text
stringlengths
10
2.72M
package com.xh.image; import java.io.File; import java.io.InputStream; import java.net.URL; import java.net.URLConnection; import java.security.MessageDigest; import java.util.Arrays; import java.util.Comparator; import android.annotation.SuppressLint; import android.graphics.Bitmap; import android.widget.ImageView; import com.xh.util.XhImageUtile; /** * @version 创建时间:2017-11-20 下午12:59:30 项目:XhlackAD-eclipse * 包名:com.Xhlack.tv.image 文件名:XhImageRunnable.java 作者:lhl 说明: 图片加载 */ public class XhImageRunnable implements Runnable { private final static String TAG = XhImageRunnable.class.getName(); private XhImageCallback callback; private XhAware aware; private int readTimeOut = 5000;// 读取超时 private int failureImage = 0; private int connectTime = 6000;// 连接超时 public void setReadTimeOut(int readTimeOut) { this.readTimeOut = readTimeOut; } public void setConnectTime(int connectTime) { this.connectTime = connectTime; } public XhImageRunnable(XhImageCallback callback, XhAware aware, int failureImage) { // TODO Auto-generated constructor stub if (callback == null) throw new RuntimeException("callback is null"); this.callback = callback; this.aware = aware; this.failureImage = failureImage; } @Override public void run() { // TODO Auto-generated method stub callback.start(aware); if (aware.getView() == null) return; Bitmap bitmap = cache(); URL url = aware.getUrl(); if (bitmap != null) { if (urlRelative(url, aware.getUrl())) { callback.setImage(aware, bitmap); } return; } synchronized (aware.getUrl().toString()) { try { URLConnection connection = url.openConnection(); connection.setReadTimeout(readTimeOut); connection.setConnectTimeout(connectTime); InputStream is = connection.getInputStream(); Bitmap bitmap2 = XhImageUtile.inputStream2Bitmap( aware.getHeight(), aware.getWidth(), is); if (urlRelative(url, aware.getUrl())) { callback.setImage( aware, XhImageUtile.zoom(aware.getHeight(), aware.getWidth(), bitmap2)); if (aware.getSaveTime() > 0) try { save(bitmap2, connection.getContentLength()); } catch (Exception e) { // TODO: handle exception e.printStackTrace(); } } if (aware.isBack()) aware.awareManager.removeView(aware.getView()); else aware.awareManager.removeImage((ImageView) aware.getView()); } catch (Exception e) { // TODO: handle exception e.printStackTrace(); callback.fail(aware); } } } /** * * lhl 2017-11-20 下午6:33:36 说明:保存位图 * * @param bitmap * void */ private void save(Bitmap bitmap, int length) { synchronized (TAG) { isSave(length); for (int i = 0; i < 4; i++) { if (XhImageUtile.bitmap2File(bitmap, aware.getSavePath() + "/" + sign(aware.getUrl().toString()))) return; } } } /** * * lhl 2017-11-23 下午12:22:17 说明:查看空间是否足够,如果不足就删除一些文件 * * @param size * 使用空间 void */ @SuppressLint("NewApi") private void isSave(int size) { // TODO Auto-generated method stub File file = new File(aware.getSavePath()); if (!file.exists()) return; if (file.getFreeSpace() > size) return; File[] fs = file.listFiles(); Arrays.sort(fs, new Comparator<File>() { @Override public int compare(File f1, File f2) { // TODO Auto-generated method stub long diff = f1.lastModified() - f2.lastModified(); if (diff > 0) { return 1; } else if (diff == 0) { return 0; } else { return -1; } } }); for (int i = 0; i < fs.length; i++) { File f = fs[i]; size -= f.length(); if (size <= 0) return; } } /** * * lhl 2017-11-20 下午2:52:13 说明:检查缓存 * * @return Bitmap */ private Bitmap cache() { File file = new File(aware.getSavePath() + "/" + sign(aware.getUrl().toString())); if (file.exists() && file.isFile()) { if ((System.currentTimeMillis() - file.lastModified()) < aware .getSaveTime()) { file.setLastModified(System.currentTimeMillis()); return XhImageUtile.url(aware.getHeight(), aware.getWidth(), file.getAbsolutePath()); } else file.delete(); } return null; } /** * * lhl 2017-11-20 下午6:34:04 说明:检测地址是否发生变化,主要用于列表滑动检测 * * @param url * @param url2 * @return boolean */ private boolean urlRelative(URL url, URL url2) { return url.toString().equals(url2.toString()); } /** * * lhl 2017-11-20 下午6:34:31 说明:生成数字地址 * * @param string * @return String */ public static String sign(String string) { char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' }; try { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(string.getBytes()); byte[] buff = md.digest(); int j = buff.length; char[] str = new char[j >> 1]; for (int i = 0; i < str.length; i++) { byte bf = buff[i]; str[i] = hexDigits[bf >>> 4 & 0x9]; } return new String(str); } catch (Exception e) { // TODO: handle exception } return null; } }
package main.java.util; import java.util.List; import org.eclipse.swt.browser.Browser; import org.eclipse.swt.browser.BrowserFunction; import com.alibaba.fastjson.JSONObject; import main.java.util.dto.BookDTO; /** * 获取分页章节 * @author libowen1 * */ @SuppressWarnings("resource") public class ImportBook extends BrowserFunction { /** * 获取所有章节数据 * @param browser * @param name */ public ImportBook(Browser browser, String name) { super(browser, name); } @Override public Object function(Object[] arguments) { return ImportBook.ImpImportBook( arguments[0].toString()); } /** * 导入书本 * @param fileNameUrl ';'隔开的字符串 位置一是名称 位置二是URL * @return */ public static Object ImpImportBook(String fileName) { String[] split = fileName.split(";"); String name = split[0]; String url = split[1]; //更新读取数据 List<BookDTO> books = SaveUnitLine.getBooks(); for (BookDTO bookDTO : books) { if(bookDTO.getUrl().equals(url)) { return "请勿重复导入,可返回书架查看"; } } BookDTO bookDTO = new BookDTO(); bookDTO.setName(name.replace(".txt", "")); bookDTO.setHistoryUnitName("未开始阅读"); bookDTO.setCurrentPage(1); bookDTO.setUrl(url); books.add(bookDTO); //重新保存数据 SaveUnitLine.saveDataToFile(books); return "导入完成,可去书架查看"; } public static void main(String[] args) { // String fileName = "D:/文档/党敏/244797.txt"; // Object readList = readList(fileName, 2); // System.out.println(readList.toString()); } }
package com.shardis.api.controllers.rest; import com.shardis.dto.commons.ValueObject; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.security.Principal; /** * Created by Tomasz Kucharzyk */ @RestController @RequestMapping("/") public class TestRestController { @RequestMapping("/title") public ValueObject getTitle(Principal user) { return new ValueObject("API SERVER IS ALIVE" + (user == null ? "" : " " + user.getName())); } @RequestMapping("/user") public Principal user(Principal user) { return user; } }
package basenet.better.basenet.mae.bundles.update; /** * 服务端返回的更新信息,封装类 * Created by liyu20 on 2018/4/11. */ public class UpdateInfo { private String fileUrl; private boolean isForce; private boolean isUpdate; private String updateTitle; private String updateInfo; private String localFileDir; public UpdateInfo(String fileUrl, boolean isForce, boolean isUpdate, String updateTitle, String updateInfo, String localFileDir) { this.fileUrl = fileUrl; this.isForce = isForce; this.isUpdate = isUpdate; this.updateTitle = updateTitle; this.updateInfo = updateInfo; this.localFileDir = localFileDir; } public void setlocalFileDir(String localFileDir) { this.localFileDir = localFileDir; } public String getLocalFileFullPath() { return localFileDir + fileUrl.substring(fileUrl.lastIndexOf("/")); } public void setUpdateTitle(String updateTitle) { this.updateTitle = updateTitle; } public void setUpdateInfo(String updateInfo) { this.updateInfo = updateInfo; } public String getUpdateTitle() { return updateTitle; } public String getUpdateInfo() { return updateInfo; } public void setUpdate(boolean update) { isUpdate = update; } public boolean isUpdate() { return isUpdate; } public String getFileUrl() { return fileUrl; } public boolean isForce() { return isForce; } public void setFileUrl(String fileUrl) { this.fileUrl = fileUrl; } public void setForce(boolean force) { isForce = force; } }
package domainlayer; import java.util.List; /* Desarrollador: Narciso Nunez * Clase: Factura * Proposito: Crear objetos factura para almacenarlos en la base de datos. * */ public class Factura { private int id; private int empId; private List<Producto> productos; public Factura(){} public Factura(int empId){ this.empId = empId; } public Factura(int empId, List<Producto> p){ this.productos = p; this.empId = empId; } public int getId() { return id; } public void setId(int id) { this.id = id; } public int getEmpId() { return empId; } public void setEmpId(int empId) { this.empId = empId; } public List<Producto> getProductos() { return productos; } public void setProductos(List<Producto> productos) { this.productos = productos; } }
/** * */ package com.machint.service.sendemail.dto; import lombok.Data; /** * @author User * */ @Data public class SendEmailResponseDTO { private String statusCode; private String message; }
package leetCode.copy.Array; import java.util.*; import static leetCode.copy.Array.no18_4sum.nSum; /** * 15. 三数之和 * * 给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有和为 0 且不重复的三元组。 * 注意:答案中不可以包含重复的三元组。 * <p> * 示例 1: * 输入:nums = [-1,0,1,2,-1,-4] * 输出:[[-1,-1,2],[-1,0,1]] * <p> * 示例 2: * 输入:nums = [] * 输出:[] * <p> * 示例 3: * 输入:nums = [0] * 输出:[] * * 提示: * 0 <= nums.length <= 3000 * -10^5 <= nums[i] <= 10^5 * * 链接:https://leetcode-cn.com/problems/3sum */ public class no15_3sum { /** * 暴力法 + 排序 + 二分 * * @param nums * @return */ public List<List<Integer>> threeSum(int[] nums) { List<List<Integer>> result = new ArrayList<>(); if (nums == null || nums.length < 3) return result; Arrays.sort(nums); int len = nums.length; for (int i = 0; i < len; i++) { if (i > 0 && nums[i] == nums[i - 1]) continue; for (int j = i + 1; j < len; j++) { if (j > i + 1 && nums[j] == nums[j - 1]) continue; int k = j + 1; int kk = len - 1; while (k <= kk) { int mid = k + (kk - k) / 2; int val = nums[i] + nums[j] + nums[mid]; if (val == 0) { List<Integer> tempResult = new ArrayList<>(); tempResult.add(nums[i]); tempResult.add(nums[j]); tempResult.add(nums[mid]); result.add(tempResult); break; } else if (val > 0) { kk = mid - 1; } else if (val < 0) { k = mid + 1; } } } } return result; } /** * 排序 + 双指针 * 一些小优化 击败了79.57%的用户 * * @param nums * @return */ public List<List<Integer>> threeSum2(int[] nums) { List<List<Integer>> result = new ArrayList<>(); if (nums == null || nums.length < 3) return result; Arrays.sort(nums); int len = nums.length; for (int i = 0; i < len; i++) { if( nums[i] > 0) break; if (i > 0 && nums[i] == nums[i - 1]) continue; int j = i + 1; int k = len - 1; while (j < k) { int val2 = nums[j]; int val3 = nums[k]; int val = nums[i] + val2+ val3; if (val == 0) { List<Integer> tempResult = new ArrayList<>(); tempResult.add(nums[i]); tempResult.add(nums[j]); tempResult.add(nums[k]); result.add(tempResult); while (j + 1 <= len - 1 && val2 == nums[j + 1]) { j++; } while (k - 1 > j && val3 == nums[k - 1]) { k--; } j++; k--; } else if (val > 0) { k--; } else if (val < 0) { j++; } } } return result; } /** * 排序+hashmap * 来自 https://leetcode-cn.com/problems/3sum/solution/san-shu-zhi-he-by-leetcode-solution/ * 比较耗时 * @param nums * @return */ public List<List<Integer>> threeSum3(int[] nums) { Arrays.sort(nums); List<List<Integer>> res = new ArrayList<List<Integer>>(); Map<Integer, Integer> map = new HashMap<Integer, Integer>(); for (int n : nums) { if (map.containsKey(n)) { map.put(n, map.get(n) + 1); } else { map.put(n, 1); } } for (int i = 0; i < nums.length - 2; ++i) { if (i > 0 && nums[i] == nums[i - 1]) { continue; } for (int j = i + 1; j < nums.length; j++) { int tmp = -nums[j] - nums[i]; if (tmp < nums[j]) { continue; } if (map.containsKey(tmp)) { //三个元素相同,都是0 if (nums[i] == 0 && nums[j] == 0 && map.get(0) < 3) { continue; } //两个元素相同,如 -2 1 1 if (nums[j] == tmp && map.get(tmp) < 2) { continue; } //正常情况 if (!res.isEmpty() && res.get(res.size() - 1).get(1) == nums[j] && res.get(res.size() - 1).get(0) == nums[i]) { continue; } List<Integer> array = new ArrayList<Integer>(); array.add(nums[i]); array.add(nums[j]); array.add(tmp); res.add(array); } } } return res; } public List<List<Integer>> threeSumN(int[] nums) { List<List<Integer>> result = new ArrayList<>(); if (nums == null || nums.length < 3) return result; Arrays.sort(nums); result = nSum(nums,3,0,0); return result; } public static void main(String args[]) { no15_3sum obj = new no15_3sum(); int[] nums = new int[]{-1, 0, 1, 2, -1, -4}; List<List<Integer>> result = obj.threeSumN(nums); System.out.println(result); System.out.println("---------"); nums = new int[]{-2, 0, 0, 2, 2}; result = obj.threeSumN(nums); System.out.println(result); System.out.println("---------"); nums = new int[]{-2, 0, 1, 1, 2}; result = obj.threeSumN(nums); System.out.println(result); System.out.println("---------"); } }
package liu.java.util.zip; public class Test { }
package uidesign; import java.awt.EventQueue; import javax.swing.JFrame; import javax.swing.JButton; import javax.swing.JLabel; import javax.swing.JOptionPane; import javax.swing.JTextField; import Origin.User; import SQLProcess.SQLProcess; import javax.swing.JPanel; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.text.SimpleDateFormat; import java.util.Date; import javax.swing.JPasswordField; public class TransferAccountFrame extends JFrameDemo { /** * */ private static final long serialVersionUID = 1L; // 未完成,检查对方账户是否存在 private float MoneyNumber = 0.0f; private String password = ""; private String Account = ""; private User TargetAccount; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { TransferAccountFrame window = new TransferAccountFrame(); window.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the application. */ public TransferAccountFrame() { init(); } public TransferAccountFrame(JFrame pframe) { super(pframe); this.parentFrame = pframe; init(); } public TransferAccountFrame(JFrame pframe, User user) { super(pframe, user); init(); this.parentFrame = pframe; this.user = user; } public void init() { setTitle("转账"); setBounds(100, 100, 450, 300); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); getContentPane().setLayout(null); JPanel contentPane = new JPanel(); contentPane.setBounds(0, 0, 432, 253); setContentPane(contentPane); contentPane.setLayout(null); JLabel label = new JLabel("目标账户:"); label.setBounds(67, 42, 86, 18); contentPane.add(label); JTextField tfTargetAccount = new JTextField(); tfTargetAccount.setBounds(161, 39, 212, 24); contentPane.add(tfTargetAccount); tfTargetAccount.setColumns(10); JTextField tfMoneyNumber = new JTextField(); tfMoneyNumber.setBounds(161, 89, 212, 24); contentPane.add(tfMoneyNumber); tfMoneyNumber.setColumns(10); JLabel label_1 = new JLabel("转账金额:"); label_1.setBounds(67, 92, 86, 18); contentPane.add(label_1); JLabel label_2 = new JLabel("密码:"); label_2.setBounds(67, 139, 72, 18); contentPane.add(label_2); JPasswordField passwordField = new JPasswordField(); passwordField.setBounds(161, 126, 212, 24); contentPane.add(passwordField); JButton btnSubmit = new JButton("提交"); btnSubmit.addMouseListener(new MouseAdapter() { @Override public void mouseClicked(MouseEvent e) { if(setAccount(tfTargetAccount.getText()) != 0) { JOptionPane.showMessageDialog(null, "该用户不存在"); return ; } if (setPassword(new String(passwordField.getPassword())) != 0) { JOptionPane.showMessageDialog(null, "密码错误"); return ; } else { float input = 0.0f; try { input = Float.parseFloat(tfMoneyNumber.getText()); } catch (Exception e1) { JOptionPane.showMessageDialog(null, "输入的金额只允许数字,必须是正数"); } if (setMoneyNumber(input) != 0) { JOptionPane.showMessageDialog(null, "余额不足"); } else { Date da =new Date(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss"); String s =formatter.format(da); if (SQLProcess.transferAccounts(user.getAccount(), Account, MoneyNumber) && SQLProcess.insertHistory(user.getAccount(), s.substring(0, 10),s.substring(11, 8), "转出", user.getAccount(),user.getDeposit()-MoneyNumber ) && SQLProcess.insertHistory(Account, s.substring(0, 10),s.substring(11, 8), "转入", TargetAccount.getAccount(),MoneyNumber ) ) { JOptionPane.showMessageDialog(null, "转账成功"); } else { JOptionPane.showMessageDialog(null, "转账失败"); } } } } }); btnSubmit.setBounds(14, 213, 113, 27); contentPane.add(btnSubmit); JButton btnReturn = new JButton("返回"); btnReturn.setBounds(305, 213, 113, 27); btnReturn.addMouseListener(new JButtonReturnListener()); ; contentPane.add(btnReturn); this.setBackgroundImg(contentPane); } public String getPassword() { return password; } public int setPassword(String password) { if (user.getPassword().equals(password)) { this.password = password; return 0; } return 1; } public float getMoneyNumber() { return MoneyNumber; } public int setMoneyNumber(float moneyNumber) { if (moneyNumber > 0 && user.getDeposit() > moneyNumber) { MoneyNumber = moneyNumber; return 0; } return 1; } public String getAccount() { return Account; } public int setAccount(String account) { if (account.matches("[0-9]{19}")) { String []cardinfo= SQLProcess.queryUser(account); if(cardinfo[1].equals(account)) { TargetAccount.setDeposit(Float.parseFloat(cardinfo[4])); return 0; } } return 1; } }
package ar.edu.utn.d2s.database; import ar.edu.utn.d2s.model.users.User; import java.util.ArrayList; import java.util.List; public class UserDAOMock { /** * TODO * Change this to a User DAO when implementing real daos with access * to the database. Remove al static methods and variables and create * instance ones. * This class acts like a repository for User entity that will be persisted in the future. */ public static List<User> users = new ArrayList<>(); //********** METHODS **********// public static void saveOrUpdate(User user) { User targetUser = findById(user.getId()); if (targetUser == null) { users.add(user); } else { targetUser = user; } } public static void delete(User user) { users.remove(user); } public static User findById(Long id) { return users.stream().filter(user -> user.getId().equals(id)).findFirst().orElse(null); } public static List<User> getUsers() { return users; } public static void setUsers(List<User> users) { UserDAOMock.users = users; } }
package com.yc.education.service.impl; import com.yc.education.mapper.RolePermissionsMapper; import com.yc.education.model.RolePermissions; import com.yc.education.service.RolePermissionsService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * @ClassName RolePermissionsServiceImpl * @Description TODO 角色 - 权限 * @Author QuZhangJing * @Date 2019/3/1 16:01 * @Version 1.0 */ @Service("RolePermissionsService") public class RolePermissionsServiceImpl extends BaseService<RolePermissions> implements RolePermissionsService { @Autowired private RolePermissionsMapper rolePermissionsMapper; @Override public List<String> selectRolePermissions(String role) { try { return rolePermissionsMapper.selectRolePermissions(role); } catch (Exception e) { return null; } } @Override public List<String> selectRolePermissionsByEmployee(String username) { try { return rolePermissionsMapper.selectRolePermissionsByEmployee(username); } catch (Exception e) { return null; } } @Override public RolePermissions selectRolePermissionsByIdAndRoleid(long roleid, long permissionscodes) { try { return rolePermissionsMapper.selectRolePermissionsByIdAndRoleid(roleid,permissionscodes); } catch (Exception e) { return null ; } } @Override public RolePermissions selectRolePermissionsByUidAndPermiss(long uid, long permissionscodes) { try { return rolePermissionsMapper.selectRolePermissionsByUidAndPermiss(uid, permissionscodes); } catch (Exception e) { return null; } } }
package Driver; import java.io.File; import java.io.Serializable; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.HashSet; import java.util.Hashtable; import java.util.List; import java.util.Map; import java.util.Set; import java.util.TreeMap; import java.util.TreeSet; import java.util.Vector; import org.apache.commons.lang.ArrayUtils; import models.Movie; import models.Rating; import models.User; public class RecommenderAPI { static File file = new File("data.xml"); private static XMLSerializer xml = new XMLSerializer(file); static Data data = new Data(); private static int userCounter = 1;//944; private static int movieCounter = 1;//1684; public static Map<Integer, User> users = new HashMap<Integer, User>(); public static Map<String, User> emailIndex = new HashMap<String, User>(); public static Map<Integer, Movie> movies = new HashMap<Integer, Movie>(); public static Map<Integer, String> genres = new HashMap<Integer, String>(); public static void main(String[] args) throws Exception { // data.loadOriginalData(); // userCounter = users.size()+1; // movieCounter = movies.size()+1; // store(); // //.takes about 9 seconds for big data //load(); } public RecommenderAPI() { } public void clearDatabase() { users.clear(); movies.clear(); genres.clear(); } public static Collection<User> getUsers() { return users.values(); } public static Collection<Movie> getMovies() { return movies.values(); } public static void setUserCounter(int setTo) { userCounter = setTo; } public static int getUserCounter() { return userCounter; } public static void setMovieCounter(int setTo) { movieCounter = setTo; } public static int getMovieCounter() { return movieCounter; } public static void addUser(String firstName, String lastName,int age,String gender,String occupation) { try { User user = new User(firstName, lastName, age, gender, occupation); if(!users.containsKey(userCounter)) { user.setUserID(userCounter); users.put(userCounter, user); emailIndex.put(user.getEmail(), user); userCounter++; } } catch(Exception e) { System.out.println("user counter is wrong"); } } public static User getUser(int userID){ try { if(users.containsKey(userID)) { return users.get(userID); } } catch(Exception e) { System.out.println("user id doesnt exist"); } return null; } public static void removeUser(int userID) { try { if(users.containsKey(userID)) { users.remove(userID); } } catch (Exception e) { System.out.println("incorrect user id"); } } public static void addMovie(String title,int year, String releaseDate, String url, String genre) { try { Movie movie = new Movie(title, year, releaseDate, url, genre); movie.setMovieID(movieCounter); if(!movies.containsKey(movieCounter)) { movies.put(movieCounter, movie); movieCounter++; } } catch(Exception e) { System.out.println("movie counter is wrong"); } } public static Movie getMovie(int movieID) { try { if(movies.containsKey(movieID)) { return movies.get(movieID); } } catch(Exception e) { System.out.println("movie id doesnt exist"); } return null; } public static void removeMovie(int movieID) { try { if(movies.containsKey(movieID)) { movies.remove(movieID); } } catch(Exception e) { System.out.println("incorrect movie id"); } } public static void addRating(int userID,int movieID,int rating, long timestamp) { try { int[] ratings = {-5,-3,1,3,5}; if(users.containsKey(userID) && movies.containsKey(movieID)) { if(ArrayUtils.contains(ratings, rating) && timestamp > 0) { Rating newRating = new Rating(userID, movieID, rating, timestamp); boolean lowerUser = removeDuplicates(userID, movieID, rating, timestamp, users.get(userID).getRatings()); boolean lowerMovie = removeDuplicates(userID, movieID, rating, timestamp, movies.get(movieID).getRatings()); if(!lowerUser && !lowerMovie) { users.get(userID).addRating(newRating); movies.get(movieID).addRating(newRating); } } } } catch (Exception e) { System.out.println("something went wrong"); } } public static void removeRating(User user, Rating rating) { try { if(user.getRatings().contains(rating)) { user.getRatings().remove(rating); } } catch(Exception e) { System.out.println("User doesnt have this rating"); } } public static List<Rating> getUserRatings(int userID){ try { if(users.containsKey(userID)) { return users.get(userID).getRatings(); } } catch (Exception e) { System.out.println("movie id doesnt exist"); } return null; } public static List<Movie> getUserRecommendations(int userID) { double similarity = 0; List<Double> similarities = new ArrayList<Double>(); User thisUser = users.get(userID); List<Rating> thisUserRatings = new ArrayList<Rating>(); for(Rating rating : thisUser.getRatings()) { thisUserRatings.add(rating); } for(User thatUser : users.values()) { List<Rating> differentRatings = new ArrayList<Rating>(); similarity = 0; if(!thisUser.equals(thatUser)) { for(Rating rating : thatUser.getRatings()) { differentRatings.add(rating); } for(Rating thisrating : thisUserRatings) { for(Rating thatrating : thatUser.getRatings()) { if(thisrating.getObject2() == thatrating.getObject2()) { similarity = similarity + (thisrating.getRating()*thatrating.getRating()); differentRatings.remove(thatrating); break; } } } } similarities.add(similarity); thatUser.setSimilarity(0); thatUser.setSimilarity(similarity); thatUser.setDifferentRatings((List<Rating>) differentRatings); } Collections.sort(similarities); Collections.reverse(similarities); List<Movie> recommendations = new ArrayList<Movie>(); for(Double thisSimilarity : similarities) { for(User user : users.values()) { if(recommendations.size() < 10) { if(!thisUser.equals(user) && user.getSimilarity() == thisSimilarity && !user.differentRatings.isEmpty()) { for(Rating rating : user.getDifferentRatings()) { if(recommendations.size() < 10) { if(!recommendations.contains(movies.get(rating.getObject2()))) { recommendations.add(movies.get(rating.getObject2())); } } else { break; } } } } else { break; } } } return recommendations; } public static List<Movie> getTopTenMovies() { List<Rating> allRatings = new ArrayList<Rating>(); List<Double> allTotals = new ArrayList<Double>(); List<Movie> tenHighest = new ArrayList<Movie>(); Set<Double> set = new HashSet<Double>(); for(User user : users.values()) { allRatings.addAll(user.getRatings()); } for(Movie movie : movies.values()) { double total = 0; for(Rating rating : movie.getRatings()) { total = total + rating.getRating(); } int size = movie.getRatings().size(); movie.setOverallRating(total/size); if(set.add(total/size)) { allTotals.add(total/size); } } Collections.sort(allTotals); Collections.reverse(allTotals); for(Double thisTotal : allTotals) { for(Movie thismovie : movies.values()) { if(thismovie.getOverallRating() == thisTotal) { if(tenHighest.size() < 10) { tenHighest.add(thismovie); } } } } return tenHighest; } public static boolean removeDuplicates(int user, int movie, int rating, Long timestamp, List<Rating> ratings) { boolean lower = false; List<Rating> dupRatings = new ArrayList<Rating>(); if(users.containsKey(user) && movies.containsKey(movie)) { for(Rating thisRating : ratings) { if(thisRating.getObject1() == user && thisRating.getObject2() == movie) { if( thisRating.getTimestamp() < timestamp) { dupRatings.add(thisRating); } else { lower = true; return lower; } } } } for(Rating thisRating : dupRatings) { ratings.remove(thisRating); } return lower; } //XML// public static void load() { try { xml.read(); genres = (Map<Integer, String>) xml.pop(); movies = (Map<Integer, Movie>) xml.pop(); emailIndex = (Map<String, User>) xml.pop(); users = (Map<Integer, User>) xml.pop(); movieCounter = (Integer) xml.pop(); userCounter = (Integer) xml.pop(); } catch (Exception e) { System.out.println("loading unsuccessful"); } } public static void store() throws Exception{ try { xml.push(userCounter); xml.push(movieCounter); xml.push(users); xml.push(emailIndex); xml.push(movies); xml.push(genres); xml.write(); } catch(Exception e) { System.out.println("string unsuccessful"); } } }
package Views.Products; import java.awt.BorderLayout; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.text.SimpleDateFormat; import javax.swing.JButton; import javax.swing.JDesktopPane; import javax.swing.JInternalFrame; import javax.swing.JLabel; import javax.swing.JPanel; import MVC.MasterFrame; import MVC.Product; import MVC.Session; import Models.ProductTemplateModel; import Views.ProductParts.ProductPartsView; public class ProductDetailView extends JPanel { public ProductTemplateModel model; private MasterFrame master; private Product product; private String myTitle = "Product Detail"; private JLabel id; private JLabel num; private JLabel desc; private JLabel time; private JButton edit = new JButton("Edit Template"); private JButton delete = new JButton("Delete Template"); private JButton parts = new JButton("Product Parts"); private int newFrameX = 20, newFrameY = 20; //used to cascade or stagger starting x,y of JInternalFrames private JDesktopPane desktop; private Session session; public ProductDetailView(final ProductTemplateModel model, MasterFrame m){ this.model = model; master = m; session = model.getSession(); this.setLayout(new GridLayout(7,1)); product = model.getCurrentProductObject(); int ID = product.getId(); desktop = master.getDesktop(); id = new JLabel("ID #: " + product.getId()); num = new JLabel("Product #: " + product.getNum()); desc = new JLabel("Description: " + product.getDesc()); time = new JLabel("Last Modified: " + product.getTime()); this.add(id); this.add(num); this.add(desc); this.add(time); delete.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { if(session == null || !session.canDeleteProductTemplates()){ master.displayChildMessage("You do not have permission to delete product template."); }else{ model.deleteProductById(product.getId()); master.displayChildMessage("You just deleted part " + product.getNum() + ". Select Products > Show Templates in the menu bar to show updated list."); } } }); parts.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { ProductPartsView child = new ProductPartsView(model, master); JInternalFrame frame = new JInternalFrame(child.getTitle(), true, true, true, true ); frame.add(child, BorderLayout.CENTER); frame.pack(); //wimpy little cascade for new frame starting x and y frame.setLocation(newFrameX, newFrameY); newFrameX = (newFrameX) % desktop.getWidth(); newFrameY = (newFrameY) % desktop.getHeight(); desktop.add(frame); frame.setVisible(true); } }); edit.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { EditProductView child = new EditProductView(model, master); JInternalFrame frame = new JInternalFrame(child.getTitle(), true, true, true, true ); frame.add(child, BorderLayout.CENTER); frame.pack(); //wimpy little cascade for new frame starting x and y frame.setLocation(newFrameX, newFrameY); newFrameX = (newFrameX) % desktop.getWidth(); newFrameY = (newFrameY) % desktop.getHeight(); desktop.add(frame); frame.setVisible(true); } }); this.add(edit); this.add(delete); this.add(parts); } public String getTitle(){ return myTitle; } }
package com.cos.blog.service; import java.util.List; import com.cos.blog.domain.reply.ReplyDao; import com.cos.blog.domain.reply.dto.DeleteReqDto; import com.cos.blog.domain.reply.dto.SaveReqDto; import com.cos.blog.domain.reply.dto.SaveRespDto; public class ReplyService { ReplyDao replyDao; public ReplyService() { replyDao = new ReplyDao(); } public int 댓글쓰기(SaveReqDto dto) { return replyDao.save(dto); } public SaveRespDto 댓글찾기(int replyId) { return replyDao.findById(replyId); } public int 댓글삭제(DeleteReqDto dto) { return replyDao.deleteById(dto); } public List<SaveRespDto> 댓글보기(int boardId) { return replyDao.findAll(boardId); } }
package com.staniul.teamspeak.modules.messengers; import com.staniul.teamspeak.security.clientaccesscheck.ClientGroupAccess; import com.staniul.teamspeak.commands.CommandResponse; import com.staniul.teamspeak.commands.Teamspeak3Command; import com.staniul.teamspeak.commands.validators.ValidateParams; import com.staniul.teamspeak.query.Client; import com.staniul.teamspeak.query.Query; import com.staniul.teamspeak.query.QueryException; import com.staniul.xmlconfig.CustomXMLConfiguration; import com.staniul.xmlconfig.annotations.UseConfig; import com.staniul.xmlconfig.annotations.WireConfig; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.List; import java.util.stream.Collectors; @Component @UseConfig("modules/cm.xml") public class ClientMessenger { private static Logger log = LogManager.getLogger(ClientMessenger.class); @WireConfig private CustomXMLConfiguration config; private final Query query; @Autowired public ClientMessenger(Query query) { this.query = query; } @Teamspeak3Command("!msg") @ClientGroupAccess("servergroups.admins") @ValidateParams(NotEmptyParamsValidator.class) public CommandResponse messageClients (Client client, String params) throws QueryException { List<Client> clients = query.getClientList().stream() .filter(c -> c.isInServergroup(config.getIntSet("groups.clients[@ids]"))) .collect(Collectors.toList()); sendMessageToClients(clients, params); return new CommandResponse(config.getString("responses.msg[@msg]")); } @Teamspeak3Command("!msgall") @ClientGroupAccess("servergroups.admins") @ValidateParams(NotEmptyParamsValidator.class) public CommandResponse messageAllClients (Client client, String params) throws QueryException { List<Client> clients = query.getClientList().stream() .filter(c -> !c.equals(client)) .collect(Collectors.toList()); sendMessageToClients(clients, params); return new CommandResponse(config.getString("responses.msgall[@msg]")); } @Teamspeak3Command("!msgadmin") @ClientGroupAccess("servergroups.admins") @ValidateParams(NotEmptyParamsValidator.class) public CommandResponse messageAllAdmins (Client client, String params) throws QueryException { List<Client> clients = query.getClientList().stream() .filter(c -> c.isInServergroup(config.getIntSet("groups.admins[@ids]"))) .filter(c -> !c.equals(client)) .collect(Collectors.toList()); sendMessageToClients(clients, params); return new CommandResponse(config.getString("responses.msgadmin[@msg]")); } private void sendMessageToClients (List<Client> clients, String msg) { for (Client c : clients) { try { query.sendTextMessageToClient(c.getId(), msg); } catch (QueryException e) { log.error(String.format("Failed to send message to client (%d %s) with message (%s).", c.getDatabaseId(), c.getNickname(), msg), e); } } } }
package com.meizu.scriptkeeper.constant; /** * Author: jinghao * Date: 2015-03-26 * Package: com.meizu.anonymous.constant */ public class URL { public static final String MEIZU_TEST_PLATFORM = "http://test.meizu.com"; public static final String MEIZU_TEST_PLATFORM_TEST = "http://172.16.200.201"; public static final String MEIZU_TEST_PLATFORM_DEV = ""; public static final String QUERY_JAR_COMPILE = "http://test.meizu.com/report/module/packages"; }
package Problem_18222; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long l = sc.nextLong(); System.out.println(getanswer(l)); sc.close(); } public static long getanswer(long l) { if(l == 1) return 0; long a = 0; for(a = 1; a+a < l; a+=a); return getanswer(l-a) == 1 ? 0 : 1; } }
package com.gaoshin.onsalelocal.yipit.api; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.List; public class Deal { private String id; private String date_added; private String end_date; private String active; private Value discount; private Value price; private Value value; private String title; private String yipit_title; private String url; private String yipit_url; private String mobile_url; private Images images; private Division division; private List<Tag> tags = new ArrayList<Tag>(); private Business business; private Source source; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getDate_added() { return date_added; } public void setDate_added(String date_added) { this.date_added = date_added; } public String getEnd_date() { return end_date; } public void setEnd_date(String end_date) { this.end_date = end_date; } public String getActive() { return active; } public void setActive(String active) { this.active = active; } public Value getDiscount() { return discount; } public void setDiscount(Value discount) { this.discount = discount; } public Value getPrice() { return price; } public void setPrice(Value price) { this.price = price; } public Value getValue() { return value; } public void setValue(Value value) { this.value = value; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getYipit_title() { return yipit_title; } public void setYipit_title(String yipit_title) { this.yipit_title = yipit_title; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getYipit_url() { return yipit_url; } public void setYipit_url(String yipit_url) { this.yipit_url = yipit_url; } public String getMobile_url() { return mobile_url; } public void setMobile_url(String mobile_url) { this.mobile_url = mobile_url; } public Images getImages() { return images; } public void setImages(Images images) { this.images = images; } public Division getDivision() { return division; } public void setDivision(Division division) { this.division = division; } public List<Tag> getTags() { return tags; } public void setTags(List<Tag> tags) { this.tags = tags; } public Business getBusiness() { return business; } public void setBusiness(Business business) { this.business = business; } public Source getSource() { return source; } public void setSource(Source source) { this.source = source; } public long getStartTime() { if(date_added == null) return 0; try { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); return sdf.parse(date_added).getTime(); } catch (Exception e) { e.printStackTrace(); return 0; } } public long getEndTime() { if(end_date == null) return 0; try { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); return sdf.parse(end_date).getTime(); } catch (Exception e) { e.printStackTrace(); return 0; } } }
package com.lq.entity; import java.io.Serializable; //import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; //import javax.persistence.OneToOne; //import javax.persistence.PrimaryKeyJoinColumn; import javax.persistence.Table; @Entity @Table(name = "t_former") public class Former implements Serializable { private static final long serialVersionUID = 1L; @Id @Column(length = 32) private String userid; @Id @Column(length = 32) private int bookid; @Id @Column(length = 32) private int logid; public Former(){} public Former(int bookid,String userid,int logid){ super(); this.bookid = bookid; this.userid = userid; this.logid = logid; } public static long getSerialversionuid() { return serialVersionUID; } public String getUserid() { return userid; } public void setUserid(String userid) { this.userid = userid; } public int getBookid() { return bookid; } public void setBookid(int bookid) { this.bookid = bookid; } public int getLogid() { return logid; } public void setLogid(int logid) { this.logid = logid; } }
package utils.client.k8s; import utils.client.k8s.model.Container; import utils.client.k8s.model.Deploy; import io.fabric8.kubernetes.api.model.*; import io.fabric8.kubernetes.api.model.apps.*; import io.fabric8.kubernetes.client.KubernetesClient; public class DeployStub { private KubernetesClient client; public DeployStub(){ this.client = K8sClient.getInstance(); } public Deployment createOrReplace(Deploy d, utils.client.k8s.model.Container...c){ PodTemplateSpecFluent.SpecNested<DeploymentSpecFluent.TemplateNested<DeploymentFluent.SpecNested<DeploymentBuilder>>> builder = new DeploymentBuilder() .withNewMetadata() .addToLabels(d.getLabels()) .withName(d.getName()) .endMetadata() .withNewSpec() .withReplicas(d.getReplicas()) .withNewSelector() .addToMatchLabels(d.getSelector()) .endSelector() .withNewTemplate() .withNewMetadata() .addToLabels(d.getLabels()) .endMetadata().withNewSpec(); for(Container e: c){ builder.addNewContainer() .withName(e.getName()) .withImage(e.getImage()) .withImagePullPolicy(e.getPullPolicyStr()) .withName(e.getName()) .addNewPort() .withContainerPort(e.getPort()) .endPort() .endContainer(); } return client.apps().deployments().inNamespace(d.getNamespace()).createOrReplace(builder.endSpec().endTemplate().endSpec().build()); } public boolean del(String ns, String name){ return client.apps().deployments().inNamespace(ns).withName(name).delete(); } public DeploymentList list(String ns){ return client.apps().deployments().inNamespace(ns).list(); } public Deployment get(String ns, String name){ return client.apps().deployments().inNamespace(ns).withName(name).get(); } public Deployment scale(String ns, String name, Integer replicas){ return client.apps().deployments().inNamespace(ns).withName(name).scale(replicas, true); } public Deployment updateImage(String ns, String name, String image){ return client.apps().deployments().inNamespace(ns).withName(name).rolling().updateImage(image); } }
package com.junyoung.searchwheretogoapi.repository; import com.junyoung.searchwheretogoapi.model.data.SearchCount; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface PlaceSearchCountRepository extends JpaRepository<SearchCount, String> {}
package com.taotao.controller; import com.taotao.common.pojo.TaotaoResult; import com.taotao.search.service.SearchItemService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class SearchItemController { @SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") @Autowired private SearchItemService searchItemService; @RequestMapping("/index/import") @ResponseBody public TaotaoResult importSearchItem() { try { return searchItemService.addSerchItem(); } catch (Exception e) { e.printStackTrace(); return TaotaoResult.build(500,"导入数据失败"); } } }
/** * Copyright &copy; 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved. */ package com.thinkgem.jeesite.modules.sys.dao; import java.util.List; import com.thinkgem.jeesite.common.persistence.CrudDao; import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao; import com.thinkgem.jeesite.modules.sys.entity.User; import com.thinkgem.jeesite.modules.sys.entity.UserRole; /** * 用户DAO接口 * @author ThinkGem * @version 2014-05-16 */ /** * @author Administrator * */ @MyBatisDao public interface UserDao extends CrudDao<User> { /** * 更新用户头像 */ public void updatePhoto(User user); /** * 根据登录名称查询用户,不关联其他表。 */ public User getByLoginNameWithoutJoins(User user); /** * 根据登录名称查询用户 * * @param loginName * @return */ public User getByLoginName(User user); /** * 根据openid获得用户信息 * * @param loginName * @return */ public User getByWeixinOpenID(User user); /** * 根据openid获得用户信息 * * @param loginName * @return */ public User getByQyWeixinOpenID(User user); /** * 通过OfficeId获取用户列表,仅返回用户id和name(树查询用户时用) * * @param user * @return */ public List<User> findUserByOfficeId(User user); /** * 查询全部用户数目 * * @return */ public long findAllCount(User user); /** * 更新用户密码 * * @param user * @return */ public int updatePasswordById(User user); /** * 更新登录信息,如:登录IP、登录时间 * * @param user * @return */ public int updateLoginInfo(User user); /** * 更新错误登录信息 * * @param user * @return */ public int updateErrorLogininfById(User user); /** * 更新微信关联id * * @param user * @return */ public int updateOpenidById(User user); /** * 删除用户角色关联数据 * * @param user * @return */ public int deleteUserRole(User user); /** * 插入用户角色关联数据 * * @param user * @return */ public int insertUserRole(User user); /** * 更新用户信息 * * @param user * @return */ public int updateUserInfo(User user); /** * 查询用户数目 * * @param user * @return */ public long findCount(User user); //add by lsp 2016.3.20 public User findCampusBuilding(User user); public int insertUserCampus(User user); public int deleteUserCampus(User user); public int insertUserBuilding(User user); public int deleteUserBuilding(User user); //add by lsp 2017.5.26 public int insertUserStuClassname(User user); public int deleteUserStuClassname(User user); public int insertUserStuDep(User user); public int deleteUserStuDep(User user); public int insertUserStuGrade(User user); public int deleteUserStuGrade(User user); public int insertUserStuSex(User user); public int deleteUserStuSex(User user); public int insertUserStuType(User user); public int deleteUserStuType(User user); /** * 查公寓管理员(固定限制条件:角色英文名以gy_sgy开头) */ public List<User> findGyUserList(User user); public long findGyUserCount(User user); /** * 根据登录名称查询用户(用于判断有无,实体对象信息不全) * * @param loginName * @return */ public User getByLoginName2(User user); public List<User> findUserByRoleId(User user); /** * 根据ID批量查询用户信息 */ public List<User> batchFind(String[] ids); //// 密码找回相关 public User getFindPassData(User user); public void updateFindPassData(User user); public void active(User user); public List<User> findNewList(User user); public User getByLoginName3(User user); public void batchInsertUserRole(List<UserRole> roleList); public void batchInsertUpdate(List<User> userList); public void updateBasicUserInfo(User user); void deleteUserArea(User user); void insertUserArea(User user); }
package CoreJavaDay2; /** * Demonstrates the use of inhertance of the two classes writteb earliar * @author Dell * */ public class InheritanceMainMethod { public static void main(String[] args) { // TODO Auto-generated method stub InheritanceBoxExample objsuper = new InheritanceBoxExample(); InheritanceBoxExample objsuper1 = new InheritanceBoxExample(34); InheritanceBoxExample objsuper2 = new InheritanceBoxExample(34,23,4); InheritanceBoxExampleSubclass objsub1 = new InheritanceBoxExampleSubclass(34,23,34,4); InheritanceBoxExampleSubclass objsub2 =new InheritanceBoxExampleSubclass(22,2,4,23); //using methods of the super class double value=objsub1.volume(); System.out.println("The value is " +value); System.out.println("The weight of my box is " +objsub1.weight); //using methods of the super class double value2=objsub2.volume(); System.out.println("The value is " +value2); System.out.println("The weight of my box is " +objsub2.weight); double value4=objsuper.volume(); objsub1.sum(); System.out.println("The value is " +value4); //objsuper2=objsub2; System.out.println(objsuper2); System.out.println(objsub2); } }
package com.teamdev.webapp1.controller; import com.teamdev.webapp1.dao.UserRepository; import com.teamdev.webapp1.model.user.Role; import com.teamdev.webapp1.model.user.Roles; import com.teamdev.webapp1.model.user.User; import com.teamdev.webapp1.service.UserRegistrationService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.authentication.encoding.Md5PasswordEncoder; import org.springframework.security.authentication.encoding.PasswordEncoder; import org.springframework.stereotype.Controller; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.*; import javax.validation.Valid; @Controller public class RegistrationController { private final UserRegistrationService userRegistrationService; @Autowired private UserRepository userRepository; @Autowired public RegistrationController(UserRegistrationService userRegistrationService) { this.userRegistrationService = userRegistrationService; } @RequestMapping(value = "/register", method = RequestMethod.GET) public String requestRegisterPage() { return "signup"; } @RequestMapping("/register/email/check") @ResponseBody public String checkEmail(@RequestParam("email") String email) { User user = userRepository.findByEmail(email); return Boolean.toString(user == null); } @RequestMapping("/register/login/check") @ResponseBody public String checkLogin(@RequestParam("login") String login) { User user = userRepository.findByLogin(login); return Boolean.toString(user == null); } @RequestMapping(value = "/register", method = RequestMethod.POST) public String registerUser(@Valid User user, BindingResult bindingResult) { if (bindingResult.hasErrors()) { return "signup"; } user.setRole(new Role(Roles.ROLE_USER)); user.setEnabled(false); encodePassword(user); userRegistrationService.requestActivation(user); return "login"; } @RequestMapping(value = "/activation/{activationKey}") public String activateUser(@PathVariable("activationKey") String activationKey) { userRegistrationService.activateUser(activationKey); return "login"; } /** * Encodes user`s password using MD5 * * @param user user, whose password needs to be encoded */ private void encodePassword(User user) { PasswordEncoder encoder=new Md5PasswordEncoder(); String hashedPassword = encoder.encodePassword(user.getPassword(), null); user.setPassword(hashedPassword); } }
package za.ac.ngosa.factory; import za.ac.ngosa.domain.Movie; import za.ac.ngosa.domain.TVShow; import java.util.Map; /** * Created by User on 2015/08/10. */ public class ShowingFactory { public static Movie createMovie( Map<String,String> values, double price, long id) { Movie movie = new Movie .Builder(id) .price(price) .type(values.get("type")) .genre(values.get("genre")) .duration(values.get("duration")) .title(values.get("title")) .build(); return movie; } public static TVShow createTVShow( Map<String,String> values, long id,double price) { TVShow tvShow= new TVShow .Builder(id) .title(values.get("title")) .season(values.get("season")) .price(price) .genre(values.get("genre")) .duration(values.get("duration")) .build(); return tvShow; } }
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package hdfcraft; import java.awt.Point; import java.awt.Rectangle; import javax.vecmath.Point3i; import hdfcraft.minecraft.Direction; /** * * @author pepijn */ public abstract class CoordinateTransform { public abstract Point transform(int x, int y); public abstract Point3i transform(int x, int y, int z); public abstract Point transform(Point coords); public abstract Point3i transform(Point3i coords); public abstract void transformInPlace(Point coords); public abstract void transformInPlace(Point3i coords); public Rectangle transform(Rectangle rectangle) { Point corner1 = rectangle.getLocation(); Point corner2 = new Point(rectangle.x + rectangle.width - 1, rectangle.y + rectangle.height - 1); transformInPlace(corner1); transformInPlace(corner2); return new Rectangle(Math.min(corner1.x, corner2.x), Math.min(corner1.y, corner2.y), Math.abs(corner2.x - corner1.x) + 1, Math.abs(corner2.y - corner1.y) + 1); } public abstract Direction transform(Direction direction); public abstract Direction inverseTransform(Direction direction); public abstract float transform(float angle); public static final CoordinateTransform ROTATE_CLOCKWISE_90_DEGREES = new CoordinateTransform() { @Override public Point transform(int x, int y) { return new Point(-y - 1, x); } @Override public Point3i transform(int x, int y, int z) { return new Point3i(-y - 1, x, z); } @Override public Point transform(Point coords) { return new Point(-coords.y - 1, coords.x); } @Override public Point3i transform(Point3i coords) { return new Point3i(-coords.y - 1, coords.x, coords.z); } @Override public void transformInPlace(Point coords) { int tmp = coords.x; coords.x = -coords.y - 1; coords.y = tmp; } @Override public void transformInPlace(Point3i coords) { int tmp = coords.x; coords.x = -coords.y - 1; coords.y = tmp; } @Override public Direction transform(Direction direction) { return direction.right(); } @Override public Direction inverseTransform(Direction direction) { return direction.left(); } @Override public float transform(float angle) { angle = angle - HALF_PI; while (angle < 0) { angle += TWO_PI; } return angle; } private static final float HALF_PI = (float) (Math.PI / 2); private static final float TWO_PI = (float) (Math.PI * 2); }; public static final CoordinateTransform ROTATE_180_DEGREES = new CoordinateTransform() { @Override public Point transform(int x, int y) { return new Point(-x - 1, -y - 1); } @Override public Point3i transform(int x, int y, int z) { return new Point3i(-x - 1, -y - 1, z); } @Override public Point transform(Point coords) { return new Point(-coords.x - 1, -coords.y - 1); } @Override public Point3i transform(Point3i coords) { return new Point3i(-coords.x - 1, -coords.y - 1, coords.z); } @Override public void transformInPlace(Point coords) { coords.x = -coords.x - 1; coords.y = -coords.y - 1; } @Override public void transformInPlace(Point3i coords) { coords.x = -coords.x - 1; coords.y = -coords.y - 1; } @Override public Direction transform(Direction direction) { return direction.opposite(); } @Override public Direction inverseTransform(Direction direction) { return direction.opposite(); } @Override public float transform(float angle) { angle = angle + PI; while (angle >= TWO_PI) { angle -= TWO_PI; } return angle; } private static final float PI = (float) Math.PI; private static final float TWO_PI = (float) (Math.PI * 2); }; public static final CoordinateTransform ROTATE_CLOCKWISE_270_DEGREES = new CoordinateTransform() { @Override public Point transform(int x, int y) { return new Point(y, -x - 1); } @Override public Point3i transform(int x, int y, int z) { return new Point3i(y, -x - 1, z); } @Override public Point transform(Point coords) { return new Point(coords.y, -coords.x - 1); } @Override public Point3i transform(Point3i coords) { return new Point3i(coords.y, -coords.x - 1, coords.z); } @Override public void transformInPlace(Point coords) { int tmp = -coords.x - 1; coords.x = coords.y; coords.y = tmp; } @Override public void transformInPlace(Point3i coords) { int tmp = -coords.x - 1; coords.x = coords.y; coords.y = tmp; } @Override public Direction transform(Direction direction) { return direction.left(); } @Override public Direction inverseTransform(Direction direction) { return direction.right(); } @Override public float transform(float angle) { angle = angle + HALF_PI; while (angle >= TWO_PI) { angle -= TWO_PI; } return angle; } private static final float HALF_PI = (float) (Math.PI / 2); private static final float TWO_PI = (float) (Math.PI * 2); }; }
package com.robin.springbootlearn.app.controller; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.RestController; /** * @author silkNets * @program springboot-learn * @description Jackson 使用方式测试 * @createDate 2020-02-27 09:32 */ @RestController public class JacksonController { /* Jackson */ @Autowired private ObjectMapper objectMapper; /* 采用数 */ @GetMapping("/readTree.json") public @ResponseBody String readTree() throws JsonProcessingException { String jsonStr = "{\"name\":\"Ji\",\"id\":1}"; JsonNode node = objectMapper.readTree(jsonStr); String name = node.get("name").asText(); int id = node.get("id").asInt(); return "name:" + name + ", id:" + id; } }
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.innovaciones.reporte.service; import com.innovaciones.reporte.dao.TipoCuentaBancariaDAO; import com.innovaciones.reporte.model.TipoCuentaBancaria; import java.io.Serializable; import java.util.List; import javax.faces.bean.ManagedBean; import javax.faces.bean.ViewScoped; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * * @author fyaulema */ @Service @ManagedBean(name = "tipoCuentaBancariaService") @ViewScoped public class TipoCuentaBancariaServiceImpl implements TipoCuentaBancariaService, Serializable { private TipoCuentaBancariaDAO tipoCuentaBancariaDAO; public void setTipoCuentaBancariaDAO(TipoCuentaBancariaDAO tipoCuentaBancariaDAO) { this.tipoCuentaBancariaDAO = tipoCuentaBancariaDAO; } @Override @Transactional public TipoCuentaBancaria addTipoCuentaBancaria(TipoCuentaBancaria tipoCuentaBancaria) { return tipoCuentaBancariaDAO.addTipoCuentaBancaria(tipoCuentaBancaria); } @Override @Transactional public List<TipoCuentaBancaria> getTipoCuentaBancarias() { return tipoCuentaBancariaDAO.getTipoCuentaBancarias(); } @Override @Transactional public TipoCuentaBancaria getTipoCuentaBancariaById(Integer id) { return tipoCuentaBancariaDAO.getTipoCuentaBancariaById(id); } @Override @Transactional public List<TipoCuentaBancaria> getTipoCuentaBancariasByEstado(Integer estado) { return tipoCuentaBancariaDAO.getTipoCuentaBancariasByEstado(estado); } @Override @Transactional public TipoCuentaBancaria saveTipoCuentaBancaria(TipoCuentaBancaria tipoCuentaBancaria) { return tipoCuentaBancariaDAO.saveTipoCuentaBancaria(tipoCuentaBancaria); } }
package com.example.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.annotation.Order; import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.security.crypto.password.PasswordEncoder; import com.example.servise.AccountUserDetailsService; /** * * SecurityFilterChainインターフェイスの実装。 * デフォルトではDefaultSecurityFilterChainクラス * * @author JavaUser */ @EnableWebSecurity public class SecurityConfiguration { @Configuration @Order(1) public static class UiWebSecurityConfig extends WebSecurityConfigurerAdapter{ @Override protected void configure(HttpSecurity http) throws Exception{ http.antMatcher("/css/**"); } } @Configuration @Order(2) public static class ApiWebSecurityConfig extends WebSecurityConfigurerAdapter{ // @Autowired // AccountUserDetailsService accountUserDetailsServise; //デフォルトでは認証成功時のレスポンスは、一度アクセスを拒否したパス @Override protected void configure(HttpSecurity http) throws Exception { http.formLogin() //フォーム認証の適用 .loginPage("/loginForm").permitAll() //"/loginFrom"へのアクセスを許可 .loginProcessingUrl("/authenticate") //認証パスを指定 .usernameParameter("username") // HTML の input nameを取得 .passwordParameter("password") //資格情報のパラメータを指定 .defaultSuccessUrl("/Success", true) //成功場合のパス .failureForwardUrl("/errorForm"); //失敗時のパス http.logout() .logoutSuccessUrl("/loginForm").permitAll(); http.authorizeRequests() //リクエストを制限 .anyRequest().authenticated(); //全てのURLリクエストを認証されたユーザーにのみ使用可能にする } /** * DaoAuthenticationProviderを有効化する。 * PasswordEncoderとUserDetailsServiceがBean登録されている場合は必要無い。 * * @return */ // @Autowired // void configurerAuthenticationManager(AuthenticationManagerBuilder auth) throws Exception{ // auth.userDetailsService(accountUserDetailsServise).passwordEncoder(passwordEncoder()); // } @Bean PasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); } } }
/* * TaxaListUtils */ package net.maizegenetics.taxa; import java.util.ArrayList; import java.util.List; import java.util.TreeSet; /** * * @author Terry Casstevens */ public class TaxaListUtils { private TaxaListUtils() { // utility class } /** * Intersect joins the specified groups. * * @param group1 an TaxaList * @param group2 another TaxaList * * @return the taxa in the intersection of groups 1 and 2, sorted in * ascending order */ public static TaxaList getCommonTaxa(TaxaList group1, TaxaList group2) { return getCommonTaxa(new TaxaList[]{group1, group2}); } /** * Intersect joins the specified groups. * * @param groups groups to join. * @return The taxa from the intersect join, sorted in ascending order */ public static TaxaList getCommonTaxa(TaxaList[] groups) { if ((groups == null) || (groups.length == 0)) { return null; } TreeSet<Taxon> intersectIds = new TreeSet<Taxon>(); for (int x = 0; x < groups[0].numberOfTaxa(); x++) { intersectIds.add(groups[0].get(x)); } for (int i = 1; i < groups.length; i++) { List<Taxon> temp = new ArrayList<Taxon>(); for (int j = 0; j < groups[i].numberOfTaxa(); j++) { temp.add(groups[i].get(j)); } intersectIds.retainAll(temp); } TaxaListBuilder builder = new TaxaListBuilder(); builder.addAll(intersectIds); return builder.build(); } /** * Union joins the specified groups. * * @param group1 an TaxaList * @param group2 another TaxaList * * @return the taxa in the union of groups 1 and 2, sorted in ascending * order */ public static TaxaList getAllTaxa(TaxaList group1, TaxaList group2) { return getAllTaxa(new TaxaList[]{group1, group2}); } /** * Union joins the specified groups. * * @param groups groups to join. * * @return The taxa from the union join, sorted in ascending order */ public static TaxaList getAllTaxa(TaxaList[] groups) { if ((groups == null) || (groups.length == 0)) { return null; } TreeSet<Taxon> allIds = new TreeSet<Taxon>(); for (int i = 0; i < groups.length; i++) { int n = groups[i].numberOfTaxa(); for (int j = 0; j < n; j++) { allIds.add(groups[i].get(j)); } } TaxaListBuilder builder = new TaxaListBuilder(); builder.addAll(allIds); return builder.build(); } }
/**************************************************************** * Licensed to the Apache Software Foundation (ASF) under one * * or more contributor license agreements. See the NOTICE file * * distributed with this work for additional information * * regarding copyright ownership. The ASF licenses this file * * to you under the Apache License, Version 2.0 (the * * "License"); you may not use this file except in compliance * * with the License. You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, * * software distributed under the License is distributed on an * * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * * KIND, either express or implied. See the License for the * * specific language governing permissions and limitations * * under the License. * ****************************************************************/ package org.apache.james.jspf.core; /** * This constants are used by Terms to define their matching rules. */ public interface SPFTermsRegexps { final String ALPHA_PATTERN = "[a-zA-Z]"; final String MACRO_LETTER_PATTERN_EXP = "[rctlsodipvhRCTLSODIPVH]"; final String MACRO_LETTER_PATTERN = "[lsodipvhLSODIPVH]"; final String TRANSFORMERS_REGEX = "\\d*[r]?"; final String DELEMITER_REGEX = "[\\.\\-\\+,/_\\=]"; final String MACRO_LETTERS_REGEX = MACRO_LETTER_PATTERN_EXP + TRANSFORMERS_REGEX + DELEMITER_REGEX + "*"; final String MACRO_EXPAND_REGEX = "\\%(?:\\{" + MACRO_LETTERS_REGEX + "\\}|\\%|\\_|\\-)"; final String MACRO_LITERAL_REGEX = "[\\x21-\\x24\\x26-\\x7e]"; /** * This is used by the MacroExpander */ final String MACRO_STRING_REGEX_TOKEN = MACRO_EXPAND_REGEX + "|" + MACRO_LITERAL_REGEX + "{1}"; /** * ABNF: macro-string = *( macro-expand / macro-literal ) */ final String MACRO_STRING_REGEX = "(?:" + MACRO_STRING_REGEX_TOKEN +")*"; final String ALPHA_DIGIT_PATTERN = "[a-zA-Z0-9]"; /** * ABNF: toplabel = ( *alphanum ALPHA *alphanum ) / ( 1*alphanum "-" *( * alphanum / "-" ) alphanum ) ; LDH rule plus additional TLD restrictions ; * (see [RFC3696], Section 2) */ final String TOP_LABEL_REGEX = "(?:" + ALPHA_DIGIT_PATTERN + "*" + SPFTermsRegexps.ALPHA_PATTERN + "{1}" + ALPHA_DIGIT_PATTERN + "*|(?:" + ALPHA_DIGIT_PATTERN + "+" + "\\-" + "(?:" + ALPHA_DIGIT_PATTERN + "|\\-)*" + ALPHA_DIGIT_PATTERN + "))"; /** * ABNF: domain-end = ( "." toplabel [ "." ] ) / macro-expand */ final String DOMAIN_END_REGEX = "(?:\\." + TOP_LABEL_REGEX + "\\.?" + "|" + SPFTermsRegexps.MACRO_EXPAND_REGEX + ")"; /** * ABNF: domain-spec = macro-string domain-end */ final String DOMAIN_SPEC_REGEX = "(" + SPFTermsRegexps.MACRO_STRING_REGEX + DOMAIN_END_REGEX + ")"; /** * Spring MACRO_STRING from DOMAIN_END (domain end starts with .) */ final String DOMAIN_SPEC_REGEX_R = "(" + SPFTermsRegexps.MACRO_STRING_REGEX + ")(" + DOMAIN_END_REGEX + ")"; }
/* * Copyright 2002-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.scheduling.annotation; import java.lang.annotation.Annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.springframework.context.annotation.AdviceMode; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; import org.springframework.core.Ordered; /** * Enables Spring's asynchronous method execution capability, similar to functionality * found in Spring's {@code <task:*>} XML namespace. * * <p>To be used together with @{@link Configuration Configuration} classes as follows, * enabling annotation-driven async processing for an entire Spring application context: * * <pre class="code"> * &#064;Configuration * &#064;EnableAsync * public class AppConfig { * * }</pre> * * {@code MyAsyncBean} is a user-defined type with one or more methods annotated with * either Spring's {@code @Async} annotation, the EJB 3.1 {@code @jakarta.ejb.Asynchronous} * annotation, or any custom annotation specified via the {@link #annotation} attribute. * The aspect is added transparently for any registered bean, for instance via this * configuration: * * <pre class="code"> * &#064;Configuration * public class AnotherAppConfig { * * &#064;Bean * public MyAsyncBean asyncBean() { * return new MyAsyncBean(); * } * }</pre> * * <p>By default, Spring will be searching for an associated thread pool definition: * either a unique {@link org.springframework.core.task.TaskExecutor} bean in the context, * or an {@link java.util.concurrent.Executor} bean named "taskExecutor" otherwise. If * neither of the two is resolvable, a {@link org.springframework.core.task.SimpleAsyncTaskExecutor} * will be used to process async method invocations. Besides, annotated methods having a * {@code void} return type cannot transmit any exception back to the caller. By default, * such uncaught exceptions are only logged. * * <p>To customize all this, implement {@link AsyncConfigurer} and provide: * <ul> * <li>your own {@link java.util.concurrent.Executor Executor} through the * {@link AsyncConfigurer#getAsyncExecutor getAsyncExecutor()} method, and</li> * <li>your own {@link org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler * AsyncUncaughtExceptionHandler} through the {@link AsyncConfigurer#getAsyncUncaughtExceptionHandler * getAsyncUncaughtExceptionHandler()} * method.</li> * </ul> * * <p><b>NOTE: {@link AsyncConfigurer} configuration classes get initialized early * in the application context bootstrap. If you need any dependencies on other beans * there, make sure to declare them 'lazy' as far as possible in order to let them * go through other post-processors as well.</b> * * <pre class="code"> * &#064;Configuration * &#064;EnableAsync * public class AppConfig implements AsyncConfigurer { * * &#064;Override * public Executor getAsyncExecutor() { * ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor(); * executor.setCorePoolSize(7); * executor.setMaxPoolSize(42); * executor.setQueueCapacity(11); * executor.setThreadNamePrefix("MyExecutor-"); * executor.initialize(); * return executor; * } * * &#064;Override * public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() { * return new MyAsyncUncaughtExceptionHandler(); * } * }</pre> * * <p>If only one item needs to be customized, {@code null} can be returned to * keep the default settings. * * <p>Note: In the above example the {@code ThreadPoolTaskExecutor} is not a fully managed * Spring bean. Add the {@code @Bean} annotation to the {@code getAsyncExecutor()} method * if you want a fully managed bean. In such circumstances it is no longer necessary to * manually call the {@code executor.initialize()} method as this will be invoked * automatically when the bean is initialized. * * <p>For reference, the example above can be compared to the following Spring XML * configuration: * * <pre class="code"> * &lt;beans&gt; * * &lt;task:annotation-driven executor="myExecutor" exception-handler="exceptionHandler"/&gt; * * &lt;task:executor id="myExecutor" pool-size="7-42" queue-capacity="11"/&gt; * * &lt;bean id="asyncBean" class="com.foo.MyAsyncBean"/&gt; * * &lt;bean id="exceptionHandler" class="com.foo.MyAsyncUncaughtExceptionHandler"/&gt; * * &lt;/beans&gt; * </pre> * * The above XML-based and JavaConfig-based examples are equivalent except for the * setting of the <em>thread name prefix</em> of the {@code Executor}; this is because * the {@code <task:executor>} element does not expose such an attribute. This * demonstrates how the JavaConfig-based approach allows for maximum configurability * through direct access to the actual component. * * <p>The {@link #mode} attribute controls how advice is applied: If the mode is * {@link AdviceMode#PROXY} (the default), then the other attributes control the behavior * of the proxying. Please note that proxy mode allows for interception of calls through * the proxy only; local calls within the same class cannot get intercepted that way. * * <p>Note that if the {@linkplain #mode} is set to {@link AdviceMode#ASPECTJ}, then the * value of the {@link #proxyTargetClass} attribute will be ignored. Note also that in * this case the {@code spring-aspects} module JAR must be present on the classpath, with * compile-time weaving or load-time weaving applying the aspect to the affected classes. * There is no proxy involved in such a scenario; local calls will be intercepted as well. * * @author Chris Beams * @author Juergen Hoeller * @author Stephane Nicoll * @author Sam Brannen * @since 3.1 * @see Async * @see AsyncConfigurer * @see AsyncConfigurationSelector */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Import(AsyncConfigurationSelector.class) public @interface EnableAsync { /** * Indicate the 'async' annotation type to be detected at either class * or method level. * <p>By default, both Spring's @{@link Async} annotation and the EJB 3.1 * {@code @jakarta.ejb.Asynchronous} annotation will be detected. * <p>This attribute exists so that developers can provide their own * custom annotation type to indicate that a method (or all methods of * a given class) should be invoked asynchronously. */ Class<? extends Annotation> annotation() default Annotation.class; /** * Indicate whether subclass-based (CGLIB) proxies are to be created as opposed * to standard Java interface-based proxies. * <p><strong>Applicable only if the {@link #mode} is set to {@link AdviceMode#PROXY}</strong>. * <p>The default is {@code false}. * <p>Note that setting this attribute to {@code true} will affect <em>all</em> * Spring-managed beans requiring proxying, not just those marked with {@code @Async}. * For example, other beans marked with Spring's {@code @Transactional} annotation * will be upgraded to subclass proxying at the same time. This approach has no * negative impact in practice unless one is explicitly expecting one type of proxy * vs. another &mdash; for example, in tests. */ boolean proxyTargetClass() default false; /** * Indicate how async advice should be applied. * <p><b>The default is {@link AdviceMode#PROXY}.</b> * Please note that proxy mode allows for interception of calls through the proxy * only. Local calls within the same class cannot get intercepted that way; an * {@link Async} annotation on such a method within a local call will be ignored * since Spring's interceptor does not even kick in for such a runtime scenario. * For a more advanced mode of interception, consider switching this to * {@link AdviceMode#ASPECTJ}. */ AdviceMode mode() default AdviceMode.PROXY; /** * Indicate the order in which the {@link AsyncAnnotationBeanPostProcessor} * should be applied. * <p>The default is {@link Ordered#LOWEST_PRECEDENCE} in order to run * after all other post-processors, so that it can add an advisor to * existing proxies rather than double-proxy. */ int order() default Ordered.LOWEST_PRECEDENCE; }
package graficos; public interface WindowStateListener { }
package com.hcy.suzhoubusquery.utils; import org.json.JSONArray; import org.json.JSONObject; import java.io.Serializable; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.Map; /** * 不好用的BaseBean * * @author WHO, * @info 为了避免不能序列化,应该尽量不忘BaseBean里加入MAP,LIST类型等不可序列化元素 * */ public class BaseBean implements Serializable { private static final long serialVersionUID = 1L; private Map<String, Object> dataMap; public Map<String, Object> getDataMap() { return dataMap; } public boolean isHasData() { boolean b = true; if (null == dataMap || dataMap.size() == 0) { b = false; } return b; } /** * 初始化数据 * * @param jsonObject */ public void initData(JSONObject jsonObject) { if (jsonObject == null) { return; } dataMap = parseJSONObject(jsonObject); } /** * 将json对象转化为map * @param jsonObject * @return */ private Map<String, Object> parseJSONObject(JSONObject jsonObject) { Map<String, Object> map = null; Iterator<String> iterator = jsonObject.keys(); if (iterator.hasNext()) { map = new HashMap<>(); } while (iterator.hasNext()) { String tempKey = iterator.next(); if (!jsonObject.isNull(tempKey) && null != jsonObject.optJSONObject(tempKey)) { map.put(tempKey, new BaseBean(jsonObject.optJSONObject(tempKey))); } else if (!jsonObject.isNull(tempKey) && null != jsonObject.optJSONArray(tempKey)) { map.put(tempKey, parseJSONArray(jsonObject.optJSONArray(tempKey))); } else if (!jsonObject.isNull(tempKey)){ map.put(tempKey, jsonObject.opt(tempKey)); } else { map.put(tempKey, null); } } return map; } private ArrayList<Object> parseJSONArray(JSONArray jsonArray) { ArrayList<Object> list = null; if (jsonArray.length() > 0) { list = new ArrayList<Object>(); int len = jsonArray.length(); for (int i = 0; i < len; i++) { if (null != jsonArray.optJSONObject(i)) { // 对象 BaseBean list.add(new BaseBean(jsonArray.optJSONObject(i))); } else if (null != jsonArray.optJSONArray(i)) { // 集合 list.add(parseJSONArray(jsonArray.optJSONArray(i))); } else { list.add(jsonArray.opt(i)); } } } return list; } public BaseBean() { dataMap = new HashMap<String, Object>(); } public BaseBean(JSONObject jsonObject) { initData(jsonObject); } public Object get(String key) { if (null == dataMap || dataMap.get(key) == null) { return null; } try { return dataMap.get(key); } catch (Exception e) { return null; } } public String getStr(String key) { // return null == dataMap.get(key) ? "" : // "null".equals(dataMap.get(key).toString())?"":dataMap.get(key).toString(); return null == dataMap.get(key) ? "" : dataMap.get(key).toString(); } public int getInt(String key) { int n = 0; String str = getStr(key); try { String tmp = StringUtils.isEmpty(str) ? "0" : str; n = Integer.parseInt(StringUtils.isNumeric(tmp) ? tmp : "0"); } catch (NumberFormatException e) { throw new RuntimeException("parse int error [" + str + "]"); } return n; } public long getLong(String key) { long n = 0; String str = getStr(key); try { String tmp = StringUtils.isEmpty(str) ? "0" : str; n = Long.parseLong(StringUtils.isNumeric(tmp) ? tmp : "0"); } catch (NumberFormatException e) { throw new RuntimeException("parse int error [" + str + "]"); } return n; } public float getFloat(String key) { float n = 0; String str = getStr(key); try { String tmp = StringUtils.isEmpty(str) ? "0" : str; n = Float.parseFloat(tmp); } catch (NumberFormatException e) { throw new RuntimeException("parse float error [" + str + "]"); } return n; } public void set(String key, Object value) { if (null == dataMap) { dataMap = new HashMap<String, Object>(); } dataMap.put(key, value); } public boolean containKey(String key) { if (null != dataMap) { return dataMap.containsKey(key); } return false; } /* * public String debugerString() { StringBuffer buffer = new StringBuffer(); Set<String> set = dataMap.keySet(); for (String string : set) { Object object = dataMap.get(string); if (null == object) { buffer.append(string).append("="); continue; } if (object instanceof HashMap) { buffer.append(string).append("=").append(((HashMap<String, Object>)object).toString()).append(","); continue; }else if(object instanceof ArrayList){ ArrayList<Object> obj = (ArrayList<Object>)object; buffer.append(string).append("="); for (Object object2 : obj) { if (object2 instanceof BaseBean) { buffer.append((((BaseBean)object2).getDataMap()).toString()).append(","); }else{ buffer.append(object2.toString()).append(","); } } }else{ buffer.append(string).append("=").append(object.toString()).append(","); } } * return buffer.toString(); } */ }
package finalproject; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.scene.layout.StackPane; import javafx.scene.paint.Color; import javafx.scene.shape.Rectangle; import javafx.scene.text.Text; import javafx.scene.text.TextAlignment; import java.util.Calendar; import java.util.GregorianCalendar; /** * This class represent a to-do that can be put onto a day pane. * * @see DayPane */ public class ToDo extends StackPane { /** * The title of this to-do. Uses StringProperty to be compatible * with JavaFX features. */ private StringProperty title; /** * The start and end date of this to-do. */ private Calendar start, end; /** * The background of this pane. */ private Rectangle background; /** * The color of this to-do, usually associated with its category. */ private Color color; /** * Available colors for to-do's. Colors signify different categories. */ public static Color[] AVAILABLE_COLORS = { Color.WHITE, Color.LIGHTPINK, Color.LIGHTGREEN, Color.LIGHTBLUE, Color.LIGHTGOLDENRODYELLOW, Color.LIGHTGRAY }; /** * Creates a to-do with the given title. Initializes the graphical * components of this object. * * @param title the to-do title */ public ToDo(String title) { this.title = new SimpleStringProperty(title); start = new GregorianCalendar(); end = new GregorianCalendar(); background = new Rectangle(); background.setWidth(MonthPane.CELL_WIDTH - 10); background.setHeight(MonthPane.CELL_HEIGHT / 5); background.setFill(Color.WHITE); background.setStroke(((Color) background.getFill()).darker()); Text text = new Text(title); text.setTextAlignment(TextAlignment.LEFT); text.textProperty().bind(this.title); this.getChildren().addAll(background, text); } // getters and setters public String getTitle() { return title.get(); } public void setTitle(String title) { this.title.set(title); } public void setStart(int year, int month, int day) { setStart(year, month, day, 0, 0); } public void setStart(int year, int month, int day, int hour, int minute) { start.set(year, month, day, hour, minute); } public void setStart(Calendar c) { start = c; } public void setEnd(int year, int month, int day) { setEnd(year, month, day, 0, 0); } public void setEnd(int year, int month, int day, int hour, int minute) { end.set(year, month, day, hour, minute); } public void setEnd(Calendar c) { end = c; } public Color getColor() { return color; } public void setColor(Color color) { this.color = color; background.setFill(color); background.setStroke(color.darker()); } }
package net.awesomekorean.podo.writing; import android.content.Intent; import android.os.Handler; import android.os.Bundle; import android.text.Editable; import android.text.TextWatcher; import android.view.MotionEvent; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import android.widget.Toast; import androidx.appcompat.app.AppCompatActivity; import net.awesomekorean.podo.R; import net.awesomekorean.podo.teachers.Teachers; import java.io.Serializable; import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; public class WritingFrame extends AppCompatActivity implements View.OnClickListener, Serializable { TextView textCount; // 글자 수 표시 EditText editText; // 쓰기 입력 LinearLayout saveResult; //저장 메시지 public static String guid; String contents; int letters; ImageView btnBack; Button btnSave; Button btnCorrection; String code; // add 인지 edit 인지를 판별 WritingEntity editWriting; WritingRepository repository; Intent intent; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_writing_frame); textCount = findViewById(R.id.textCount); editText = findViewById(R.id.editText); btnSave = findViewById(R.id.btnSave); btnCorrection = findViewById(R.id.btnCorrection); saveResult = findViewById(R.id.saveResult); btnBack = findViewById(R.id.btnBack); btnBack.setOnClickListener(this); btnSave.setOnClickListener(this); btnCorrection.setOnClickListener(this); intent = getIntent(); code = intent.getExtras().getString(getString(R.string.REQUEST)); int status = intent.getExtras().getInt(getString(R.string.STATUS)); if(status == 1) { btnSave.setVisibility(View.GONE); btnCorrection.setVisibility(View.GONE); editText.setFocusable(false); } editWriting = new WritingEntity(); // EDIT 일 때, 기존의 글을 출력 if(code.equals(getString(R.string.REQUEST_EDIT))) { editWriting = (WritingEntity) intent.getSerializableExtra(getString(R.string.EXTRA_ENTITY)); guid = editWriting.getGuid(); contents = editWriting.getContents(); letters = editWriting.getLetters(); editText.setText(contents); textCount.setText(letters + " letters"); } // 글을 쓸 때 바로바로 글자수를 가져옴 editText.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {} @Override public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) { letters = editText.getText().toString().length(); textCount.setText(letters + " " + getString(R.string.LETTERS)); } @Override public void afterTextChanged(Editable editable) {} }); // 에디트텍스트뷰 스크롤 가능하게 해줌 editText = findViewById(R.id.editText); editText.setOnTouchListener(new View.OnTouchListener() { public boolean onTouch(View view, MotionEvent event) { // TODO Auto-generated method stub if (view.getId() ==R.id.editText) { view.getParent().requestDisallowInterceptTouchEvent(true); switch (event.getAction()&MotionEvent.ACTION_MASK){ case MotionEvent.ACTION_UP: view.getParent().requestDisallowInterceptTouchEvent(false); break; } } return false; } }); } @Override public void onClick(View view) { switch (view.getId()) { case R.id.btnSave : saveWriting(); saveResult.setVisibility(View.VISIBLE); Handler handler = new Handler(); handler.postDelayed(new Runnable() { @Override public void run() { saveResult.setVisibility(View.GONE); setResult(RESULT_OK, intent); finish(); } }, 1000); break; case R.id.btnCorrection : if(letters > 19) { WritingEntity entity = saveWriting(); if(entity == null) { entity = editWriting; } Toast.makeText(getApplicationContext(), getString(R.string.WRITING_SAVED), Toast.LENGTH_LONG).show(); Intent intent = new Intent(this, Teachers.class); intent.putExtra(getString(R.string.EXTRA_ENTITY), entity); startActivity(intent); finish(); } else { Toast.makeText(getApplicationContext(), getString(R.string.WRITING_SHORT), Toast.LENGTH_LONG).show(); } break; case R.id.btnBack : finish(); break; } } private WritingEntity saveWriting() { contents = editText.getText().toString(); if(code.equals(getString(R.string.REQUEST_ADD))) { WritingEntity entity = new WritingEntity(contents, letters); guid = entity.getGuid(); repository = new WritingRepository(getApplicationContext()); repository.insert(entity); return entity; }else{ editWriting.setContents(contents); editWriting.setLetters(letters); repository = new WritingRepository(getApplicationContext()); repository.editByGuid(guid, contents, letters); return null; } } }
package coursework; //Inherits from Appliance //Properties for amount of units consumed and for how long it is active in a 24 hour period public class CyclicFixed extends Appliance{ private float consumptionPerHour; private float activeTime; //Constructor that initialises the properties & checks number of hours active is 1-24 public CyclicFixed(String name, float consumptionPerHour, int activeTime) { super(name); this.consumptionPerHour = consumptionPerHour; this.activeTime = activeTime; } //Overriding timePasses from Appliance //Calculates number of units the appliance has used in this time period @Override public void timePasses(int timeStep) { if (timeStep%24 < activeTime) super.tellMeterToConsumeUnits(this.consumptionPerHour); } }
package cn.edu.pku.residents.service.impl; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import cn.edu.pku.residents.dao.MessageDao; import cn.edu.pku.residents.entity.Message; import cn.edu.pku.residents.enu.ReadType; import cn.edu.pku.residents.service.MessageService; import cn.edu.pku.residents.vo.MsgQueryRestrictions; import cn.edu.pku.residents.vo.Page; import cn.edu.pku.residents.vo.StudentQueryRestrictions; /** * Implementations of Message service * @author stanley_hwang * */ @Service public class MessageServiceImpl implements MessageService{ @Autowired private MessageDao messageDao; @Override public void addMessage(Message message) { messageDao.save(message); } @Override public List<Message> listMessage(Page page, String studentID) { return messageDao.listMessage(page, studentID); } @Override public void deleteMessage(int messageId) { messageDao.delete(messageId); } @Override public void readMessage(int messageId) { Message message = messageDao.get(messageId); message.setReadType(ReadType.read); messageDao.update(message); } @Override public Page paging(Page page, MsgQueryRestrictions restrictions) { long count = messageDao.count(restrictions); Page p = new Page(((Long)count).intValue(), page.getIndex(), page.getSize()); return p; } @Override public List<Message> listMessageByRestrictions(Page page, MsgQueryRestrictions restrictions) { return messageDao.listMessageByRestrictions(page, restrictions); } }
package com.xwolf.eop.erp.service; import com.xwolf.eop.erp.entity.Departments; import com.xwolf.eop.system.service.BaseService; /** * <p> * </p> * * @author xwolf * @date 2017-01-20 17:12 * @since V1.0.0 */ public interface IDepartmentsService extends BaseService<Departments> { }
/** */ package org.eclipse.pss.dsl.metamodel; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Action invocation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.pss.dsl.metamodel.Action_invocation#getAction_instance <em>Action instance</em>}</li> * </ul> * * @see org.eclipse.pss.dsl.metamodel.MetamodelPackage#getAction_invocation() * @model * @generated */ public interface Action_invocation extends Action { /** * Returns the value of the '<em><b>Action instance</b></em>' reference list. * The list contents are of type {@link org.eclipse.pss.dsl.metamodel.Action}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Action instance</em>' reference list. * @see org.eclipse.pss.dsl.metamodel.MetamodelPackage#getAction_invocation_Action_instance() * @model * @generated */ EList<Action> getAction_instance(); } // Action_invocation
package com.smartlead.common.vo; public class AmenityVO { private int amenityId; private String amenityName; public int getAmenityId() { return amenityId; } public void setAmenityId(int amenityId) { this.amenityId = amenityId; } public String getAmenityName() { return amenityName; } public void setAmenityName(String amenityName) { this.amenityName = amenityName; } @Override public String toString() { return "Amenity{" + "amenityId=" + amenityId + ", amenityName='" + amenityName + '\'' + '}'; } }
package cn.test.demo02; public class Zi extends Fu{ //public void show() {} public void func() { System.out.println("zi类的一般方法"); } }
package com.mobile.mobilehardware.emulator; import android.util.Log; import com.mobile.mobilehardware.base.BaseBean; import com.mobile.mobilehardware.base.BaseData; import org.json.JSONObject; /** * @author gunaonian */ public class EmulatorBean extends BaseBean { private static final String TAG = EmulatorBean.class.getSimpleName(); /** * build */ private boolean checkBuild; /** * 包名修改 */ private boolean checkPkg; /** * 管道检测 */ private boolean checkPipes; /** * 驱动程序检测 */ private boolean checkQEmuDriverFile; /** * 光传感器检测 */ private boolean checkHasLightSensorManager; /** * cpu架构检测 */ private boolean checkCpuInfo; public boolean isCheckBuild() { return checkBuild; } public void setCheckBuild(boolean checkBuild) { this.checkBuild = checkBuild; } public boolean isCheckPkg() { return checkPkg; } public void setCheckPkg(boolean checkPkg) { this.checkPkg = checkPkg; } public boolean isCheckPipes() { return checkPipes; } public void setCheckPipes(boolean checkPipes) { this.checkPipes = checkPipes; } public boolean isCheckQEmuDriverFile() { return checkQEmuDriverFile; } public void setCheckQEmuDriverFile(boolean checkQEmuDriverFile) { this.checkQEmuDriverFile = checkQEmuDriverFile; } public boolean isCheckHasLightSensorManager() { return checkHasLightSensorManager; } public void setCheckHasLightSensorManager(boolean checkHasLightSensorManager) { this.checkHasLightSensorManager = checkHasLightSensorManager; } public boolean isCheckCpuInfo() { return checkCpuInfo; } public void setCheckCpuInfo(boolean checkCpuInfo) { this.checkCpuInfo = checkCpuInfo; } @Override protected JSONObject toJSONObject() { try { jsonObject.put(BaseData.Emulator.CHECK_BUILD, isEmpty(checkBuild)); jsonObject.put(BaseData.Emulator.CHECK_PKG, isEmpty(checkPkg)); jsonObject.put(BaseData.Emulator.CHECK_PIPES, isEmpty(checkPipes)); jsonObject.put(BaseData.Emulator.CHECK_QEMU_DRIVER_FILE, isEmpty(checkQEmuDriverFile)); jsonObject.put(BaseData.Emulator.CHECK_HAS_LIGHT_SENSOR_MANAGER, isEmpty(checkHasLightSensorManager)); jsonObject.put(BaseData.Emulator.CHECK_CPU_INFO, isEmpty(checkCpuInfo)); } catch (Exception e) { Log.e(TAG, e.toString()); } return super.toJSONObject(); } }
package socialnetwork.repository.database; import socialnetwork.domain.Prietenie; import socialnetwork.domain.Tuple; import socialnetwork.domain.Utilizator; import socialnetwork.domain.validators.Validator; import socialnetwork.repository.Repository; import java.sql.*; import java.time.LocalDate; import java.time.LocalDateTime; import java.time.LocalTime; import java.util.HashSet; import java.util.Optional; import java.util.Set; public class PrietenieDbRepository implements Repository<Tuple<Long,Long>, Prietenie> { private String url; private String username; private String password; private Validator<Prietenie> validator; public PrietenieDbRepository(String url, String username, String password, Validator<Prietenie> validator) { this.url = url; this.username = username; this.password = password; this.validator = validator; } @Override public Optional<Prietenie> findOne(Tuple<Long, Long> longLongTuple) { Optional<Prietenie> o = Optional.empty(); String query = "SELECT * FROM \"Friendships\" WHERE \"User1\" = ? and \"User2\" = ?;"; try { Connection connection = DriverManager.getConnection(url, username, password); PreparedStatement statement = connection.prepareStatement(query); statement.setLong(1,longLongTuple.getLeft()); statement.setLong(2,longLongTuple.getRight()); ResultSet resultSet = statement.executeQuery(); while(resultSet.next()) { Long id = resultSet.getLong(1); Long user1 = resultSet.getLong(2); Long user2 = resultSet.getLong(3); Date data = resultSet.getDate(4); Prietenie prietenie = new Prietenie(new Tuple(user1,user2)); o=Optional.of(prietenie); } } catch (SQLException throwables) { throwables.printStackTrace(); } return o; } @Override public Iterable<Prietenie> findAll() { Set<Prietenie> prietenii = new HashSet<>(); try (Connection connection = DriverManager.getConnection(url, username, password); PreparedStatement statement = connection.prepareStatement("SELECT * from \"Friendships\" "); ResultSet resultSet = statement.executeQuery()) { while (resultSet.next()) { Long id = resultSet.getLong("Id"); Long user1 = resultSet.getLong("User1"); Long user2 = resultSet.getLong("User2"); Prietenie prietenie = new Prietenie(new Tuple(user1,user2)); LocalDate date = resultSet.getDate("Date").toLocalDate(); LocalTime time = resultSet.getTime("Time").toLocalTime(); prietenie.setDate(date.atTime(time)); prietenii.add(prietenie); } return prietenii; } catch (SQLException e) { e.printStackTrace(); } return prietenii; } @Override public Optional<Prietenie> save(Prietenie entity) { Connection connection = null; //this.validator.validate(entity); Tuple id = entity.getId(); try { connection = DriverManager.getConnection(url, username, password); PreparedStatement statement = connection.prepareStatement("INSERT INTO public.\"Friendships\"(\"User1\", \"User2\", \"Date\", \"Time\")VALUES (?,?,?,?);"); statement.setLong(1, (Long) id.getLeft()); statement.setLong(2, (Long) id.getRight()); LocalDate a = LocalDate.of(entity.getDate().getYear(),entity.getDate().getMonthValue(),entity.getDate().getDayOfMonth()); statement.setDate(3, Date.valueOf(a)); LocalTime b = LocalTime.of(entity.getDate().getHour(),entity.getDate().getMinute(),entity.getDate().getSecond()); statement.setTime(4, Time.valueOf(b)); statement.executeUpdate(); } catch (SQLException e) { e.printStackTrace(); } return Optional.empty(); } @Override public Optional<Prietenie> update(Prietenie entity) { return Optional.empty(); } @Override public Optional<Prietenie> findd(String a, String b) { return Optional.empty(); } @Override public Optional<Prietenie> finddd(String a) { return null; } @Override public Optional<Prietenie> delete(Tuple<Long, Long> aLong) { if (aLong == null) throw new IllegalArgumentException("id must not be null"); Optional<Prietenie> o = findOne(aLong); try (Connection connection = DriverManager.getConnection(url, username, password); PreparedStatement statement = connection.prepareStatement("DELETE FROM \"Friendships\" WHERE (\"User1\"=? AND \"User2\"=?) OR (\"User2\"=? AND \"User1\"=?) "); ) { statement.setLong(1, aLong.getLeft()); statement.setLong(2, aLong.getRight()); statement.setLong(3, aLong.getLeft()); statement.setLong(4, aLong.getRight()); statement.executeUpdate(); } catch (SQLException e) { e.printStackTrace(); } return o; } }
package com.fubang.wanghong; import android.app.Application; import com.facebook.drawee.backends.pipeline.Fresco; import com.fubang.wanghong.utils.DbUtil; import com.uuzuche.lib_zxing.activity.ZXingLibrary; import org.androidannotations.annotations.EApplication; import cn.sharesdk.framework.ShareSDK; /** * 娶妻娶德不娶色,嫁人嫁心不嫁财, * 交友交心不交利、当面责骂那是友, * 背后乱叫那是狗,真正的好朋友, * 互损不会翻脸,疏远不会猜疑, * 出钱不会计较,地位不分高低, * 成功无需巴结,失败不会离去。 * 奋斗的时候搭把手,迷茫的时候拉把手, * 开心的时候干杯酒,难过的日子一起走。 * Created by dell on 2016/4/5. */ @EApplication public class App extends Application { // private AVModuleMgr mgr ; private static volatile App instance = null; // // // private constructor suppresses // private App(){ // mgr = AVModuleMgr.getInstance(); // } // public static App getInstance() { // if already inited, no need to get lock everytime if (instance == null) { synchronized (App.class) { if (instance == null) { instance = new App(); } } } return instance; } /** * 初始化 */ @Override public void onCreate() { super.onCreate(); // setMgr(new AVModuleMgr()); // Log.d("123",mgr+"------mgr"); //初始化Fresco // FrescoHelper.getInstance().init(this); Fresco.initialize(this); //初始化数据库类 DbUtil.init(this); //初始化ShareSDK ShareSDK.initSDK(this); ZXingLibrary.initDisplayOpinion(this); // SMSSDK.initSDK(this,"1789d8ca05454","ecd58e751dc63a816f29fda6f77e60c3"); } }
package web; import java.io.Serializable; public class SyosaiBean implements Serializable { String pro_cd =""; String pro_name =""; String cat_id=""; String stock=""; String price=""; String img =""; String msg=""; public String getPro_cd() { return pro_cd; } public void setPro_cd(String pro_cd) { this.pro_cd = pro_cd; } public String getPro_name() { return pro_name; } public void setPro_name(String pro_name) { this.pro_name = pro_name; } public String getCat_id() { return cat_id; } public void setCat_id(String cat_id) { this.cat_id = cat_id; } public String getStock() { return stock; } public void setStock(String stock) { this.stock = stock; } public String getPrice() { return price; } public void setPrice(String price) { this.price = price; } public String getImg() { return img; } public void setImg(String img) { this.img = img; } public String getMsg() { return msg; } public void setMsg(String msg) { this.msg = msg; } }
package group.web; import java.util.List; import java.util.Map; import org.apache.log4j.Logger; import org.json.JSONArray; import org.json.JSONObject; import group.Group; import group.dao.GroupDAO; import tool.PropertyOper; public class GroupAjaxManager { private static GroupAjaxManager group_manager = new GroupAjaxManager(); private static Logger logger = Logger.getLogger(GroupAjaxManager.class); private GroupDAO dao = null; private static String BASE_PATH = PropertyOper.GetValueByKey("souvenirs.properties", "data_path"); private final static int DEFAULT_AFFECTED_ROW = 1; /** * 单例模式获取对象的方法 * * @return SouvenirsAjaxManager类的对象 */ public static GroupAjaxManager getInstance() { return group_manager; } /** * 维护DAO对象的可用性 */ private void checkValidDAO() { if (dao == null) dao = GroupDAO.getInstance(); } public String showMyGroup(Map<String, String>parameter) { checkValidDAO(); String user_id = parameter.get("login_user_id"); int page_number = 1; int start_pos = 0; int content_leng = 10; if (parameter.containsKey("page_number")) { logger.debug(Integer.parseInt(parameter.get("page_number"))); page_number = Integer.parseInt(parameter.get("page_number")); } if (parameter.containsKey("content_length")) content_leng = Integer.parseInt(parameter.get("content_length")); start_pos = (page_number-1)*content_leng; JSONArray group_list_json = new JSONArray(); try { List<Group> belong_group = dao.queryGroupByUserID(user_id, start_pos, content_leng); JSONObject group_object = null; for (Group group : belong_group) { group_object = new JSONObject(); group_object.put("group_id", group.getGroupId()); group_object.put("group_name", group.getGroupName()); group_object.put("salbum_name", group.getSharedAlbumName()); group_object.put("intro", group.getIntro()); group_object.put("album_cover", group.getAlbumCover()); group_object.putOnce("create_timestamp", group.getCreateTimestamp()); group_list_json.put(group_object); } } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } logger.debug("group_list_json "+group_list_json.toString()); return group_list_json.toString(); } public String updateGroupInfo(Map<String, String> parameter) { checkValidDAO(); String user_id = parameter.get("login_user_id"); String new_group_name = parameter.get("group_name"); new_group_name = new_group_name.replaceAll("'", "&apos;"); String new_intro = parameter.get("intro"); new_intro = new_intro.replaceAll("'", "&apos;"); String group_id = parameter.get("group_id"); logger.debug("new_name="+new_group_name+", new_intro="+new_intro); JSONArray result_json = new JSONArray(); try { List<Group> old_group = dao.queryGroupByUserIDGroupID(user_id, group_id); if (old_group.size() != DEFAULT_AFFECTED_ROW) { throw new Exception("No matched group is found!"); } else { // Current group name is different from the original one, update it if (!old_group.get(0).getGroupName().contentEquals(new_group_name)) { int rs = dao.updateGroupName(group_id, new_group_name); if (rs == DEFAULT_AFFECTED_ROW) { logger.info("User updated group name. Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">," + " old_group_name=<"+old_group.get(0).getGroupName()+">, new_group_name=<"+new_group_name+">"); JSONObject jObject = new JSONObject(); jObject.put("item", "group name"); jObject.put("result", "true"); result_json.put(jObject); }else{ logger.warn("User failed to update group name. Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">," + " old_group_name=<"+old_group.get(0).getGroupName()+">, new_group_name=<"+new_group_name+">, result_set=<"+rs+">"); JSONObject jObject = new JSONObject(); jObject.put("item", "group name"); jObject.put("result", "Invalid updating result."); result_json.put(jObject); } } // Current group introduction is different from the original one, update it if (!old_group.get(0).getIntro().contentEquals(new_intro)) { int rs = dao.updateIntro(group_id, new_intro); if (rs == DEFAULT_AFFECTED_ROW) { logger.info("User updated group introduction. Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">," + " old_intro=<"+old_group.get(0).getIntro()+">, new_intro=<"+new_intro+">"); JSONObject jObject = new JSONObject(); jObject.put("item", "introduction"); jObject.put("result", "true"); result_json.put(jObject); }else{ logger.warn("User failed to update group nintroduction. Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">," + " old_intro=<"+old_group.get(0).getIntro()+">, new_intro=<"+new_intro+">, result_set=<"+rs+">"); JSONObject jObject = new JSONObject(); jObject.put("item", "introduction"); jObject.put("result", "Invalid updating result."); result_json.put(jObject); } } } } catch (Exception e) { // TODO Auto-generated catch block logger.warn("Updating group information failed since "+e.getMessage()); return "[{\"item\": \"updating group\"}, {\"result\": \""+e.getMessage()+"\"}]"; } if (result_json.length()==0) return "[{\"item\":\"updating group\",\"result\":\"no item changed\"}]"; else { String json = showMyGroup(parameter); result_json.put(json); return result_json.toString(); } } public String leaveGroup(Map<String, String>parameter) { checkValidDAO(); String user_id = parameter.get("login_user_id"); String group_id = parameter.get("group_id"); String result = ""; try { int rs =dao.leaveGroup(user_id, group_id); if (rs == DEFAULT_AFFECTED_ROW) { logger.info("User left a group. Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">"); result = "true"; } else { logger.warn("User failed to leave a group. Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">"); result = "Invalid operation result."; } } catch (Exception e) { // TODO Auto-generated catch block logger.warn("Fail to delete user-group relation since "+e.getMessage()); return e.getMessage(); } return result; } public String searchGroup(Map<String, String>parameter) { checkValidDAO(); String user_id = parameter.get("login_user_id"); String keyword = parameter.get("keyword"); String is_fuzzy_str = parameter.get("is_fuzzy"); boolean is_fuzzy = false; if (is_fuzzy_str != null && is_fuzzy_str.contentEquals("true")) is_fuzzy = true; JSONArray result_json = new JSONArray(); try { List<Group> search_result = dao.searchGroup(keyword, is_fuzzy); logger.info("User searched group(s). Parameters: user_id=<"+user_id+">, keyword=<"+keyword+">, is_fuzzy=<"+is_fuzzy+">"); JSONObject group_object = new JSONObject(); for (Group group : search_result) { group_object = new JSONObject(); group_object.put("group_id", group.getGroupId()); group_object.put("group_name", group.getGroupName()); group_object.put("salbum_name", group.getSharedAlbumName()); group_object.put("intro", group.getIntro()); group_object.put("album_cover", group.getAlbumCover()); group_object.putOnce("create_timestamp", group.getCreateTimestamp()); result_json.put(group_object); } } catch (Exception e) { // TODO: handle exception return "[]"; } return result_json.toString(); } public String joinInGroup(Map<String, String> parameters) { checkValidDAO(); String user_id = parameters.get("login_user_id"); String group_id = parameters.get("group_id"); String result = ""; try { int rs = dao.joininGroup(user_id, group_id); if (rs == DEFAULT_AFFECTED_ROW) { logger.info("User joined in a group successfully. Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">"); result = "true"; } else { logger.warn("User failed to join in a group since invalid result set. Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">"); result = "Invalid result set"; } } catch (Exception e) { // TODO Auto-generated catch block logger.error("User failed to join in a group since "+e.getMessage()+". Parameters: user_id=<"+user_id+">, group_id=<"+group_id+">"); result = e.getMessage(); } return result; } }
package video.api.android.sdk.domain.pagination; import java.util.ArrayList; import java.util.Map; public class AnalyticsFilter { private ArrayList<String> tags; private Map<String, String> metadata; public AnalyticsFilter withTags(ArrayList<String> tags) { this.tags = tags; return this; } public AnalyticsFilter withMetadata(Map<String, String> metadata) { this.metadata = metadata; return this; } public String build() { StringBuilder url = new StringBuilder(); if (tags != null) { for (int i = 0; i < tags.size(); i++) { url.append("&tags[").append(i).append("]=").append(tags.get(i)); } } if (metadata != null) { for (Map.Entry<String, String> e : metadata.entrySet()) { url.append("&metadata[").append(e.getKey()).append("]=").append(e.getValue()); } } return url.toString(); } }
package com.durgam.guerra; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import com.durgam.guerra.dominio.GestionRequisito; import com.durgam.guerra.servicio.ServicioGestionRequisito; @SpringBootApplication public class GestionRequisitosApplication { public static void main(String[] args) { SpringApplication.run(GestionRequisitosApplication.class, args); } }
package com.hhdb.csadmin.plugin.sql_book.util; import org.hsqldb.util.DatabaseManagerSwing; /** * hsql数据库查看 * @author hhxd * */ public class Test { public static void main(String[] args) { //./db/mydb DatabaseManagerSwing dms = new DatabaseManagerSwing(); dms.main(); } }
package com.fgtit.app; import java.io.File; import java.io.IOException; import java.io.RandomAccessFile; import java.io.UnsupportedEncodingException; import java.util.regex.Pattern; import android.os.Environment; public class DeviceConfig { private static DeviceConfig instance; public static DeviceConfig getInstance() { if(null == instance) { instance = new DeviceConfig(); } return instance; } public byte[] mark=new byte[4]; public String devname="FT-06"; //设备名称 public byte[] password=new byte[8]; //通讯密码 public String welcome="Welcome to"; //欢迎显示 public byte devid=1; //机号 public byte ldhcp=1; //自动获取IP地址 public byte[] macaddr=new byte[6]; //MAC地址 public long lip=0xc0a80112; //本地IP地址 public long lsub=0xffffff00; //本地子网掩码 public long lgate=0xc0a80101; //本地网关 public long lport=5001; //本地端口 public long rip=0xc0a80164; //远程服务器IP地址 public long rport=5002; //远程服务器端口 public long baud=115200; //RS485 波特率 public byte lang=1; //语言 public byte commtype=0; //通讯类型,0,使用全部方式 public byte thresholdn=50; //1:N 安全级别 public byte threshold1=50; //1:1 安全级别 public byte thresholdc=50; //指纹卡安全级别 public byte locksignal1=1; //锁延时 //SENSOR1 public byte locksignal2=0; //锁信号 //SENSOR2 public byte wiegand=0; //维根 public byte alarmdelay=10; //报警延时 public byte doordelay=5; //开门延时 public byte idlekey=15; //多少秒后关按键等 public byte idledsp=30; //多少秒后关屏幕背光 public byte workmode=0; //本地安全方式,0完全,1,部分,只可以设置通讯等,2,禁用本地管理 public byte remotemode=0; //0,本地识别,1远程识别 public byte identifymode=0; //识别方式 public byte devicetype=0; //0:标准指纹门禁机,1:指纹门禁控制器,2:指纹门禁读头 public byte[] devsn=new byte[4]; //设备唯一序列号,存放到FRAM或FLASH里,出厂前设置, public void LoadConfig(){ String fileName=Environment.getExternalStorageDirectory() + "/OnePass/device.db"; if(IsFileExists(fileName)){ InitConfig(); }else{ try { byte[] cb=new byte[100]; RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw"); long fileLength = randomFile.length(); if(fileLength==100){ randomFile.read(cb); SetConfigBytes(cb); }else{ InitConfig(); } randomFile.close(); } catch (IOException e) { } } } public void InitConfig(){ mark[0]=(byte)0x58; mark[1]=(byte)0x49; mark[2]=(byte)0x41; mark[3]=(byte)0x4F; macaddr[0]=(byte)0x20; //MAC地址 macaddr[1]=(byte)0x17; macaddr[2]=(byte)0x04; macaddr[3]=(byte)0x14; macaddr[4]=(byte)0x08; macaddr[5]=(byte)0x30; devsn[0]=(byte)0x17; //设备唯一序列号,存放到FRAM或FLASH里,出厂前设置,以后不更改 devsn[1]=(byte)0x04; devsn[2]=(byte)0x14; devsn[3]=(byte)0x01; password[0]=0x30; password[1]=0x30; password[2]=0x30; password[3]=0x30; password[4]=0x30; password[5]=0x30; password[6]=0x30; password[7]=0x30; devname="FT-06"; welcome="Welcome to"; devid=1; ldhcp=1; lip=0xc0a80112; lsub=0xffffff00; lgate=0xc0a80101; lport=5001; rip=0xc0a80164; rport=5002; baud=115200; lang=1; commtype=0; thresholdn=50; threshold1=50; thresholdc=50; locksignal1=1; locksignal2=0; wiegand=0; alarmdelay=10; doordelay=5; idlekey=15; idledsp=30; workmode=0; remotemode=0; identifymode=0; devicetype=0; } public byte[] GetConfigBytes(){ byte[] cb=new byte[100]; System.arraycopy(mark,0, cb, 0, 4); try { byte[] p1=devname.getBytes("gb2312"); System.arraycopy(p1,0, cb, 4, p1.length); } catch (UnsupportedEncodingException e) { } System.arraycopy(password,0, cb, 20, 8); try { byte[] p2=welcome.getBytes("gb2312"); System.arraycopy(p2,0, cb, 28, p2.length); } catch (UnsupportedEncodingException e) { } cb[44]=devid; cb[45]=ldhcp; System.arraycopy(macaddr,0, cb, 46, 6); cb[52]=(byte) (lip&0xFF); cb[53]=(byte) ((lip>>8)&0xFF); cb[54]=(byte) ((lip>>16)&0xFF); cb[55]=(byte) ((lip>>24)&0xFF); cb[56]=(byte) (lsub&0xFF); cb[57]=(byte) ((lsub>>8)&0xFF); cb[58]=(byte) ((lsub>>16)&0xFF); cb[59]=(byte) ((lsub>>24)&0xFF); cb[60]=(byte) (lgate&0xFF); cb[61]=(byte) ((lgate>>8)&0xFF); cb[62]=(byte) ((lgate>>16)&0xFF); cb[63]=(byte) ((lgate>>24)&0xFF); cb[64]=(byte) (lport&0xFF); cb[65]=(byte) ((lport>>8)&0xFF); cb[66]=(byte) ((lport>>16)&0xFF); cb[67]=(byte) ((lport>>24)&0xFF); cb[68]=(byte) (rip&0xFF); cb[69]=(byte) ((rip>>8)&0xFF); cb[70]=(byte) ((rip>>16)&0xFF); cb[71]=(byte) ((rip>>24)&0xFF); cb[72]=(byte) (rport&0xFF); cb[73]=(byte) ((rport>>8)&0xFF); cb[74]=(byte) ((rport>>16)&0xFF); cb[75]=(byte) ((rport>>24)&0xFF); cb[76]=(byte) (baud&0xFF); cb[77]=(byte) ((baud>>8)&0xFF); cb[78]=(byte) ((baud>>16)&0xFF); cb[79]=(byte) ((baud>>24)&0xFF); cb[80]=lang; cb[81]=commtype; cb[82]=thresholdn; cb[83]=threshold1; cb[84]=thresholdc; cb[85]=locksignal1; cb[86]=locksignal2; cb[87]=wiegand; cb[88]=alarmdelay; cb[89]=doordelay; cb[90]=idlekey; cb[91]=idledsp; cb[92]=workmode; cb[93]=remotemode; cb[94]=identifymode; cb[95]=devicetype; System.arraycopy(devsn,0, cb, 96, 4); return cb; } public void SetConfigBytes(byte[] cb){ System.arraycopy(cb,0, mark, 0, 4); System.arraycopy(cb,46, macaddr, 0, 6); System.arraycopy(cb,96, devsn, 0, 4); System.arraycopy(cb,20, password, 0, 8); devname=new String(cb, 4, 16); devname=devname.replaceAll("\\s",""); welcome=new String(cb, 28, 16); welcome=welcome.replaceAll("\\s",""); devid=cb[44]; ldhcp=cb[45]; lip=(cb[52]&0xFF)|((cb[53]<<8)&0xFF00)|((cb[54]<<16)&0xFF0000)|((cb[55]<<24)&0xFF000000); lsub=(cb[56]&0xFF)|((cb[57]<<8)&0xFF00)|((cb[58]<<16)&0xFF0000)|((cb[59]<<24)&0xFF000000); lgate=(cb[60]&0xFF)|((cb[61]<<8)&0xFF00)|((cb[62]<<16)&0xFF0000)|((cb[63]<<24)&0xFF000000); lport=(cb[64]&0xFF)|((cb[65]<<8)&0xFF00)|((cb[66]<<16)&0xFF0000)|((cb[67]<<24)&0xFF000000); rip=(cb[68]&0xFF)|((cb[69]<<8)&0xFF00)|((cb[70]<<16)&0xFF0000)|((cb[71]<<24)&0xFF000000); rport=(cb[72]&0xFF)|((cb[73]<<8)&0xFF00)|((cb[74]<<16)&0xFF0000)|((cb[75]<<24)&0xFF000000); baud=(cb[76]&0xFF)|((cb[77]<<8)&0xFF00)|((cb[78]<<16)&0xFF0000)|((cb[79]<<24)&0xFF000000); lang=cb[80]; commtype=cb[81]; thresholdn=cb[82]; threshold1=cb[83]; thresholdc=cb[84]; locksignal1=cb[85]; locksignal2=cb[86]; wiegand=cb[87]; alarmdelay=cb[88]; doordelay=cb[89]; idlekey=cb[90]; idledsp=cb[91]; workmode=cb[92]; remotemode=cb[93]; identifymode=cb[94]; devicetype=cb[95]; } public void SaveConfig(){ String fileName=Environment.getExternalStorageDirectory() + "/OnePass/device.db"; File f=new File(fileName); if(f.exists()){ f.delete(); } byte[] cb=GetConfigBytes(); try { RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw"); randomFile.write(cb); randomFile.close(); } catch (IOException e) { } } public static boolean IsFileExists(String filename){ File f=new File(filename); if(f.exists()){ return true; } return false; } public static long ipToLong(String strIp) { String[]ip = strIp.split("\\."); return (Long.parseLong(ip[0]) << 24) + (Long.parseLong(ip[1]) << 16) + (Long.parseLong(ip[2]) << 8) + Long.parseLong(ip[3]); } public static String longToIP(long longIp) { StringBuffer sb = new StringBuffer(""); sb.append(String.valueOf(((longIp & 0xFFFFFFFF) >> 24)& 0xFF)); sb.append("."); sb.append(String.valueOf(((longIp & 0x00FFFFFF) >> 16)& 0xFF)); sb.append("."); sb.append(String.valueOf(((longIp & 0x0000FFFF) >> 8)& 0xFF)); sb.append("."); sb.append(String.valueOf((longIp & 0x000000FF)& 0xFF)); return sb.toString(); } public static boolean checkIP(String str) { Pattern pattern = Pattern .compile("^((\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5]" + "|[*])\\.){3}(\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5]|[*])$"); return pattern.matcher(str).matches(); } public static boolean checkNumber(String str){ //Pattern p = Pattern.compile("^[-+]?[0-9]"); Pattern p = Pattern.compile("[0-9]*"); return p.matcher(str).matches(); } }
import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; public class ThreadTest { public static void main(String[] args) throws InterruptedException, ExecutionException { // 第一种实现 ExtendThread t1 = new ExtendThread("T1"); // t1.start(); // 第二种实现 ImplementRunnableThread r = new ImplementRunnableThread("R"); Thread t2 = new Thread(r); Thread t3 = new Thread(r); // t2.start(); // t3.start(); // 第三种实现 ExecutorService executor = Executors.newFixedThreadPool(3); ImplementCallableThread c = new ImplementCallableThread("Callable"); Future future1 = executor.submit(c); System.out.println("future1=" + future1.get()); Future future2 = executor.submit(c); System.out.println("future2=" + future2.get()); Future future3 = executor.submit(c); System.out.println("future3=" + future3.get()); } } class ExtendThread extends Thread { private String name; public ExtendThread(String name) { super(name); this.name = name; } public void run() { synchronized (this.name) { System.out.println("开始时间:" + System.currentTimeMillis() + ",线程名字:" + Thread.currentThread().getName()); System.out.println("name=" + name); System.out.println("结束时间:" + System.currentTimeMillis() + ",线程名字:" + Thread.currentThread().getName()); } } } class ImplementRunnableThread implements Runnable { private String name; public ImplementRunnableThread(String name) { this.name = name; } public void run() { synchronized (this.name) { System.out.println("开始时间:" + System.currentTimeMillis() + ",线程名字:" + Thread.currentThread().getName()); System.out.println("name=" + name); System.out.println("结束时间:" + System.currentTimeMillis() + ",线程名字:" + Thread.currentThread().getName()); } } } class ImplementCallableThread implements Callable<String> { private String name; public ImplementCallableThread(String name) { this.name = name; } @Override public String call() throws Exception { System.out.println("开始时间:" + System.currentTimeMillis() + ",线程名字:" + Thread.currentThread().getName()); System.out.println("name=" + name); System.out.println("结束时间:" + System.currentTimeMillis() + ",线程名字:" + Thread.currentThread().getName()); return "Hello Callable"; } }
package am.bizis.stspr.fo; /** * Misto, jak je vedeno v Informacnim systemu evidence obyvatel (133/2000 Sb.) * Jedna se o zjednodusenou formu adresy. ISEOMistoOkres rozsiruje ISEOMisto * § 3, odst. 2 * @author alex * */ public class ISEOMisto { private final String OBEC; /** * @param obec Nazev obce */ public ISEOMisto(String obec){ this.OBEC=obec; } @Override public String toString(){ return this.OBEC; } public String getObec(){ return this.OBEC; } }
package com.git.cloud.bill.model.vo; public class BillInfoVo { private String tenantId; //租户id private String tenantName; //租户名称 private String billMonth; //账单月 private String billMoney; //账单应缴金额 private String realIncomeMoney; //实收金额 private String paymentState; //支付状态 private String remark; //备注 private String serviceType; //服务类型 private String startTime; //开始时间 private String instanceId; //实例ID private String createDate; //创建日期 private String balance; //代金券面值 private String effectDate; //生效时间 private String expireDate; //失效时间 private String status; //状态 private String optType;//充值类型 private String payStatus;//充值状态 private String totalAmount;//充值金额 public String getOptType() { return optType; } public void setOptType(String optType) { this.optType = optType; } public String getPayStatus() { return payStatus; } public void setPayStatus(String payStatus) { this.payStatus = payStatus; } public String getTotalAmount() { return totalAmount; } public void setTotalAmount(String totalAmount) { this.totalAmount = totalAmount; } public String getBalance() { return balance; } public void setBalance(String balance) { this.balance = balance; } public String getEffectDate() { return effectDate; } public void setEffectDate(String effectDate) { this.effectDate = effectDate; } public String getExpireDate() { return expireDate; } public void setExpireDate(String expireDate) { this.expireDate = expireDate; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getCreateDate() { return createDate; } public void setCreateDate(String createDate) { this.createDate = createDate; } public String getServiceType() { return serviceType; } public void setServiceType(String serviceType) { this.serviceType = serviceType; } public String getStartTime() { return startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getInstanceId() { return instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getTenantId() { return tenantId; } public void setTenantId(String tenantId) { this.tenantId = tenantId; } public String getBillMonth() { return billMonth; } public void setBillMonth(String billMonth) { this.billMonth = billMonth; } public String getBillMoney() { return billMoney; } public void setBillMoney(String billMoney) { this.billMoney = billMoney; } public String getRealIncomeMoney() { return realIncomeMoney; } public void setRealIncomeMoney(String realIncomeMoney) { this.realIncomeMoney = realIncomeMoney; } public String getPaymentState() { return paymentState; } public void setPaymentState(String paymentState) { this.paymentState = paymentState; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getTenantName() { return tenantName; } public void setTenantName(String tenantName) { this.tenantName = tenantName; } @Override public String toString() { return "BillInfoVo [tenantId=" + tenantId + ", tenantName=" + tenantName + ", billMonth=" + billMonth + ", billMoney=" + billMoney + ", realIncomeMoney=" + realIncomeMoney + ", paymentState=" + paymentState + ", remark=" + remark + "]"; } }
package com.example.youtubeex.usecases.repos; import com.example.youtubeex.entities.channelVideos.VideosChannelInfo; import com.example.youtubeex.entities.channels.ChannelsInfo; import com.example.youtubeex.usecases.network.RetrofitClient; import com.example.youtubeex.usecases.network.YouTubeApi; import io.reactivex.Observable; public class ChannelsRepo { YouTubeApi youTubeApi; public ChannelsRepo() { youTubeApi = RetrofitClient.getClient().create(YouTubeApi.class); } public Observable<ChannelsInfo> getChannelsInfo(String key,String part,String ids) { return youTubeApi.getChannels(key,part,ids); } }
package com.chinasoft.education_manage.domain; public class Class { private String ccid; private String cname; private String tname; private String ccname; public Class() { } public Class(String ccid, String cname, String tname, String ccname) { this.ccid = ccid; this.cname = cname; this.tname = tname; this.ccname = ccname; } public String getCcid() { return ccid; } public void setCcid(String ccid) { this.ccid = ccid; } public String getCname() { return cname; } public void setCname(String cname) { this.cname = cname; } public String getTname() { return tname; } public void setTname(String tname) { this.tname = tname; } public String getCcname() { return ccname; } public void setCcname(String ccname) { this.ccname = ccname; } @Override public String toString() { return "Class{" + "ccid='" + ccid + '\'' + ", cname='" + cname + '\'' + ", tname='" + tname + '\'' + ", ccname='" + ccname + '\'' + '}'; } }
package edu.uestc.sdn; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.SimpleChannelInboundHandler; import java.nio.charset.Charset; import struct.*; public class AgentHandler extends SimpleChannelInboundHandler<ACProtocol> { @Override protected void channelRead0(ChannelHandlerContext ctx, ACProtocol msg) throws Exception { //接收到数据,并处理 int len = msg.getLen(); byte[] content = msg.getContent(); Packet_in packet_out = new Packet_in(); try { JavaStruct.unpack(packet_out, content); }catch(StructException e) { e.printStackTrace(); } switch(packet_out.reason){ case 0: System.out.println("heart beat"); break; default: System.out.println("ingress :"+packet_out.ingress_port); System.out.println("reason :"+packet_out.reason); } } @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { System.out.println("异常消息=" + cause.getMessage()); ctx.close(); } }
package com.three2one.assessment.model; import javax.persistence.*; import javax.validation.Valid; import javax.validation.constraints.NotNull; import java.time.LocalDate; import java.time.LocalDateTime; @Entity @Table(name = "request_log") public class RequestLog extends BaseEntity { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @NotNull(message = "requestURI can't by empty") @Valid private String requestURI; @Column(name = "request_method") private String requestMethod; @Column(name = "request_body") private String requestBody; @Column(name = "request_date") private LocalDateTime requestDate; public RequestLog() { } public RequestLog(@NotNull(message = "requestURI can't by empty") @Valid String requestURI, String requestMethod, String requestBody, LocalDateTime requestDate) { this.requestURI = requestURI; this.requestMethod = requestMethod; this.requestBody = requestBody; this.requestDate = requestDate; } @PrePersist public void validatePrePersist() { super.validatePrePersist(); } @PreUpdate public void validatePreUpdate() { super.validatePreUpdate(); } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getRequestURI() { return requestURI; } public void setRequestURI(String requestURI) { this.requestURI = requestURI; } public String getRequestMethod() { return requestMethod; } public void setRequestMethod(String requestMethod) { this.requestMethod = requestMethod; } public String getRequestBody() { return requestBody; } public void setRequestBody(String requestBody) { this.requestBody = requestBody; } public LocalDateTime getRequestDate() { return requestDate; } public void setRequestDate(LocalDateTime requestDate) { this.requestDate = requestDate; } }
package crescendo.base.EventDispatcher; /** * InputEvent * * The InputEvent abstract class represents a non-midi event and * documents some of the similarities between like events such as * mouse and keyboard. * * @author groszc * */ public abstract class InputEvent { /** The time in milliseconds at which this event occurred. **/ private long timestamp; /** The action associated with this event. **/ private ActionType action; /** The action associated with this event. **/ private InputType type; /** * InputEvent * * Default constructor for InputEvent. * * @param a - action type * @param t - timestamp * @param i - input type */ public InputEvent(ActionType a, long t, InputType i) { action = a; timestamp = t; type = i; } public ActionType getActionType() { return this.action; } public InputType getInputType() { return this.type; } public long getTimestamp() { return this.timestamp; } }
// SPDX-License-Identifier: BSD-3-Clause // Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org) package org.xbill.DNS; import lombok.extern.slf4j.Slf4j; /** * DNS Name Compression object. * * @see Message * @see Name * @author Brian Wellington */ @Slf4j public class Compression { private static class Entry { Name name; int pos; Entry next; } private static final int TABLE_SIZE = 17; private static final int MAX_POINTER = 0x3FFF; private final Entry[] table; /** Creates a new Compression object. */ public Compression() { table = new Entry[TABLE_SIZE]; } /** * Adds a compression entry mapping a name to a position in a message. * * @param pos The position at which the name is added. * @param name The name being added to the message. */ public void add(int pos, Name name) { if (pos > MAX_POINTER) { return; } int row = (name.hashCode() & 0x7FFFFFFF) % TABLE_SIZE; Entry entry = new Entry(); entry.name = name; entry.pos = pos; entry.next = table[row]; table[row] = entry; log.trace("Adding {} at {}", name, pos); } /** * Retrieves the position of the given name, if it has been previously included in the message. * * @param name The name to find in the compression table. * @return The position of the name, or -1 if not found. */ public int get(Name name) { int row = (name.hashCode() & 0x7FFFFFFF) % TABLE_SIZE; int pos = -1; for (Entry entry = table[row]; entry != null; entry = entry.next) { if (entry.name.equals(name)) { pos = entry.pos; } } log.trace("Looking for {}, found {}", name, pos); return pos; } }
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package hospitalqueuingsystem; /** * * @author faiya */ public class Patient { int index; int age; String gender; String illness; public Patient() { this.index = 9999; this.age = 200; this.gender = "Unknown"; this.illness = "Unknown"; } public Patient(int index, int age) { this.index = index; this.age = age; this.gender = "Unknown"; this.illness = "Unknown"; } public Patient(int index, int age, String genderorillness) { this.index = index; this.age = age; if (genderorillness.length() > 1) { this.illness = genderorillness; this.gender = "Unknown"; } else { this.gender = genderorillness; this.illness = "Unknown"; } } public Patient(int index, int age, String gender, String illness) { this.index = index; this.age = age; this.gender = gender; this.illness = illness; } public Patient(int index) { this.index = index; this.age = 200; this.gender = "Unknown"; this.illness = "Unknown"; } public int getIndex() { return index; } public void setIndex(int index) { this.index = index; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getGender() { return gender; } public void setGender(String gender) { this.gender = gender; } public String getIllness() { return illness; } public void setIllness(String illness) { this.illness = illness; } @Override public String toString() { return "Patient " + index; } }
// Name: Nanako Chung // Date: April 10th, 2017 // Description: Program invokes a class called Sanitizer that sanitizes data input public class TestSanitizer { //main method public static void main(String[] args) { //assigns an "unsanitized" string to the reference variable unsanitized String unsanitized="Hello# my name is !Nanako*, and I $love% to eat&!."; //displays the sanitized string to the user System.out.println(Sanitizer.sanitize(unsanitized)); } }
package com.cst.jstorm; import java.util.Map; import java.util.concurrent.atomic.AtomicLong; import com.alibaba.jstorm.batch.BatchId; import com.alibaba.jstorm.client.ConfigExtension; import com.alibaba.jstorm.utils.JStormUtils; import com.alibaba.jstorm.utils.TimeCacheMap; import backtype.storm.Config; import backtype.storm.topology.BasicOutputCollector; import backtype.storm.topology.OutputFieldsDeclarer; import backtype.storm.topology.base.BaseBasicBolt; import backtype.storm.tuple.Tuple; public class LocalMachineBolt extends BaseBasicBolt{ private static final long serialVersionUID = -6889746529107161080L; // private TimeCacheMap<String, AtomicLong> counters; @Override public void prepare(Map conf, backtype.storm.task.TopologyContext context) { ConfigExtension.setUserDefinedLog4jConf(conf, ""); // int timeoutSeconds = JStormUtils.parseInt(conf.get(Config.TOPOLOGY_MESSAGE_TIMEOUT_SECS), 30); // counters = new TimeCacheMap<String, AtomicLong>(timeoutSeconds); } @Override public void execute(Tuple input, BasicOutputCollector collector) { String id = (String) input.getValue(0); Long value = input.getLong(1); // AtomicLong counter = counters.get(id); // if (counter == null) { // counter = new AtomicLong(0); // counters.put(id, counter); // } // counter.addAndGet(value); System.out.println(id+" #:# "+value); } @Override public void declareOutputFields(OutputFieldsDeclarer declarer) { } }
package entity; import java.util.Date; public class Depart_info { private int department_id; private String department_name; private int org_id; private String department_admin; private int admin_phone; private int department_qqgroup; private String department_intro; private Date date; private Date sys_date; private String info_publisher; private int flag; private String def1; private String def2; private String def3; public int getDepartment_id() { return department_id; } public void setDepartment_id(int department_id) { this.department_id = department_id; } public String getDepartment_name() { return department_name; } public void setDepartment_name(String department_name) { this.department_name = department_name; } public int getOrg_id() { return org_id; } public void setOrg_id(int org_id) { this.org_id = org_id; } public String getDepartment_admin() { return department_admin; } public void setDepartment_admin(String department_admin) { this.department_admin = department_admin; } public int getAdmin_phone() { return admin_phone; } public void setAdmin_phone(int admin_phone) { this.admin_phone = admin_phone; } public int getDepartment_qqgroup() { return department_qqgroup; } public void setDepartment_qqgroup(int department_qqgroup) { this.department_qqgroup = department_qqgroup; } public String getDepartment_intro() { return department_intro; } public void setDepartment_intro(String department_intro) { this.department_intro = department_intro; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } public Date getSys_date() { return sys_date; } public void setSys_date(Date sys_date) { this.sys_date = sys_date; } public String getInfo_publisher() { return info_publisher; } public void setInfo_publisher(String info_publisher) { this.info_publisher = info_publisher; } public int getFlag() { return flag; } public void setFlag(int flag) { this.flag = flag; } public String getDef1() { return def1; } public void setDef1(String def1) { this.def1 = def1; } public String getDef2() { return def2; } public void setDef2(String def2) { this.def2 = def2; } public String getDef3() { return def3; } public void setDef3(String def3) { this.def3 = def3; } public Depart_info() { super(); } public Depart_info(int department_id, String department_name, int org_id, String department_admin, int admin_phone, int department_qqgroup, String department_intro, Date date, Date sys_date, String info_publisher, int flag, String def1, String def2, String def3) { super(); this.department_id = department_id; this.department_name = department_name; this.org_id = org_id; this.department_admin = department_admin; this.admin_phone = admin_phone; this.department_qqgroup = department_qqgroup; this.department_intro = department_intro; this.date = date; this.sys_date = sys_date; this.info_publisher = info_publisher; this.flag = flag; this.def1 = def1; this.def2 = def2; this.def3 = def3; } public Depart_info(int department_id, String department_name, int org_id, String department_admin, int department_qqgroup, String department_intro, Date date) { super(); this.department_id = department_id; this.department_name = department_name; this.org_id = org_id; this.department_admin = department_admin; this.department_qqgroup = department_qqgroup; this.department_intro = department_intro; this.date = date; } }
package sch.frog.calculator.platform; import sch.frog.calculator.compile.lexical.matcher.IMatcher; import sch.frog.calculator.compile.semantic.exec.IExecutor; import sch.frog.calculator.compile.syntax.DeducibleNode; import sch.frog.calculator.compile.syntax.DynamicAssociativityNode; import sch.frog.calculator.compile.syntax.ISyntaxNodeGenerator; import sch.frog.calculator.compile.syntax.UndeducibleNode; public class LanguageRule { private final String word; private final IMatcher matcher; private final int priority; private final IExecutor executor; private final Type type; private final DynamicAssociativityNode.IAssociativity associativity; public LanguageRule(String word, IMatcher matcher, int priority, Type type, IExecutor executor, DynamicAssociativityNode.IAssociativity associativity) { if(word == null && matcher == null){ throw new IllegalLanguageRuleError("word or matcher must be assign"); } if(word != null && matcher != null){ throw new IllegalArgumentException("word and matcher must assign only one"); } if(type == null){ throw new IllegalArgumentException("type must be assign"); } if((type == Type.DYNAMIC_ASSOCIATE_AND_LEFT_ASSOCIATE || type == Type.DYNAMIC_ASSOCIATE_AND_NO_LEFT_ASSOCIATE) && associativity == null){ throw new IllegalArgumentException("associativity must be assign for dynamic associate"); } if(executor == null){ throw new IllegalArgumentException("executor must be assign"); } this.word = word; this.matcher = matcher; this.priority = priority; this.executor = executor; this.type = type; this.associativity = associativity; } public ISyntaxNodeGenerator generator(){ if(this.type == Type.TERMINAL){ return (word, position) -> new UndeducibleNode(word, executor, position); }else if(this.type == Type.LEFT_ASSOCIATE){ return (word, position) -> new DeducibleNode(word, priority, DeducibleNode.AssociateType.LEFT, executor, position); }else if(this.type == Type.BOTH_ASSOCIATE){ return (word, position) -> new DeducibleNode(word, priority, executor, position); }else if(this.type == Type.RIGHT_ASSOCIATE){ return (word, position) -> new DeducibleNode(word, priority, DeducibleNode.AssociateType.RIGHT, executor, position); }else if(this.type == Type.DYNAMIC_ASSOCIATE_AND_LEFT_ASSOCIATE){ return (word, position) -> new DynamicAssociativityNode(word, priority, true, associativity.copy(), executor, position); }else if(this.type == Type.DYNAMIC_ASSOCIATE_AND_NO_LEFT_ASSOCIATE){ return (word, position) -> new DynamicAssociativityNode(word, priority, false, associativity.copy(), executor, position); }else{ throw new IllegalLanguageRuleError("unknown rule type : " + type); } } public String getWord() { return word; } public IMatcher getMatcher() { return matcher; } public enum Type{ /** * 终结节点 */ TERMINAL, /** * 左结合节点 */ LEFT_ASSOCIATE, /** * 右结合节点 */ RIGHT_ASSOCIATE, /** * 左右都可结合 */ BOTH_ASSOCIATE, /** * 动态结合节点, 并且是左结合的 */ DYNAMIC_ASSOCIATE_AND_LEFT_ASSOCIATE, /** * 动态结合节点, 左不结合 */ DYNAMIC_ASSOCIATE_AND_NO_LEFT_ASSOCIATE; } }
package ziegler.philosophers; import java.util.Random; public class Philosopher extends Thread { private final static Random RANDOM = new Random(); private String name; private Fork firstFork; private Fork secondFork; public Philosopher(Fork fork1, Fork fork2, String name) { int fork1Num = fork1.getForkNum(); int fork2Num = fork2.getForkNum(); if (fork1Num < fork2Num) { setForks(fork1, fork2); } else { setForks(fork2, fork1); } this.name = name; } public void setForks(Fork firstFork, Fork secondFork) { this.firstFork = firstFork; this.secondFork = secondFork; } @Override public void run() { while (true) { // randomly eat and think for a duration between 500-2000 milliseconds eat(); think(); } } public void eat() { synchronized (firstFork) { synchronized (secondFork) { firstFork.pickUp(); secondFork.pickUp(); System.out.println(name + " is eating"); sleepRange(500, 2000); System.out.println(name + " is done eating"); } } } public void think() { firstFork.putDown(); secondFork.putDown(); System.out.println(name + " is thinking"); sleepRange(500, 2000); } public void sleepRange(int low, int high) { try { sleep(RANDOM.nextInt(high - low) + low); } catch (InterruptedException e) { e.printStackTrace(); } } }
package com.pdd.pop.sdk.common.util; import com.pdd.pop.ext.fasterxml.jackson.annotation.JsonInclude; import com.pdd.pop.ext.fasterxml.jackson.core.JsonFactory; import com.pdd.pop.ext.fasterxml.jackson.core.JsonGenerator; import com.pdd.pop.ext.fasterxml.jackson.core.JsonParser; import com.pdd.pop.ext.fasterxml.jackson.core.type.TypeReference; import com.pdd.pop.ext.fasterxml.jackson.databind.DeserializationFeature; import com.pdd.pop.ext.fasterxml.jackson.databind.ObjectMapper; import com.pdd.pop.ext.fasterxml.jackson.databind.SerializationFeature; import com.pdd.pop.ext.fasterxml.jackson.databind.module.SimpleModule; import com.pdd.pop.sdk.common.exception.JsonParseException; import java.io.IOException; import java.io.StringWriter; public class JsonUtil { private static JsonFactory jsonFactory = new JsonFactory(); private static ObjectMapper defaultObjectMapper = createObjectMapper(); /** * 创建一个自定义的JSON ObjectMapper */ public static ObjectMapper createObjectMapper() { ObjectMapper objectMapper = new ObjectMapper(); SimpleModule module = new SimpleModule(); objectMapper.registerModule(module); objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); objectMapper.configure(SerializationFeature.INDENT_OUTPUT, false); objectMapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_CONTROL_CHARS, true); objectMapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_FIELD_NAMES, true); objectMapper.configure(JsonParser.Feature.ALLOW_SINGLE_QUOTES, true); objectMapper.setSerializationInclusion(JsonInclude.Include.NON_EMPTY); return objectMapper; } /** * 将对象转换为JSON字符串 */ public static <T> String transferToJson(T value) throws JsonParseException{ StringWriter sw = new StringWriter(); JsonGenerator gen = null; try { gen = jsonFactory.createGenerator(sw); defaultObjectMapper.writeValue(gen, value); return sw.toString(); } catch (IOException e) { throw new JsonParseException(); } finally { if (gen != null) { try { gen.close(); } catch (IOException e) { } } } } /** * 将JSON字符串转换为指定对象 */ public static <T> T transferToObj(String jsonString, Class<T> valueType) throws JsonParseException{ T value = null; if(jsonString == null || jsonString.length() == 0) {return value;} try { value = defaultObjectMapper.readValue(jsonString, valueType); } catch (IOException e) { throw new JsonParseException(); } return value; } /** * 将JSON字符串转换为指定对象 */ public static <T> T transferToObj(String jsonString, TypeReference typeReference) { if(jsonString == null || jsonString.length() == 0 || typeReference == null) { throw new JsonParseException(); } try { return defaultObjectMapper.readValue(jsonString, typeReference); } catch (IOException e){ throw new JsonParseException(); } } }
package Registration; import common.CommonAPI; public class SignUp extends CommonAPI { }
package com.zhicai.byteera.activity.community.dynamic.activity; import android.content.Intent; import android.text.TextUtils; import android.view.View; import com.google.protobuf.InvalidProtocolBufferException; import com.zhicai.byteera.MyApp; import com.zhicai.byteera.R; import com.zhicai.byteera.activity.BaseActivity; import com.zhicai.byteera.activity.initialize.LoginActivity; import com.zhicai.byteera.commonutil.ActivityUtil; import com.zhicai.byteera.commonutil.Constants; import com.zhicai.byteera.commonutil.PreferenceUtils; import com.zhicai.byteera.commonutil.ToastUtil; import com.zhicai.byteera.service.dynamic.InstitutionAttribute; import com.zhicai.byteera.service.serversdk.BaseHandlerClass; import com.zhicai.byteera.service.serversdk.TiangongClient; import com.zhicai.byteera.widget.HeadViewMain; import com.zhicai.byteera.widget.MyRatingBar; import butterknife.ButterKnife; import butterknife.Bind; import butterknife.OnClick; /** Created by lieeber on 15/8/11. */ public class RatingActivity extends BaseActivity { @Bind(R.id.rating_bar_1) MyRatingBar mRatingBar1; @Bind(R.id.rating_bar_2) MyRatingBar mRatingBar2; @Bind(R.id.rating_bar_3) MyRatingBar mRatingBar3; @Bind(R.id.head_view) HeadViewMain mheadView; private int riskScore; private int expScore; private int incomeScore; private String institutionid; @Override protected void loadViewLayout() { setContentView(R.layout.rating_activity); ButterKnife.bind(this); } @Override protected void initData() { riskScore = getIntent().getIntExtra("riskScore", 0); expScore = getIntent().getIntExtra("expScore", 0); incomeScore = getIntent().getIntExtra("incomeScore", 0); institutionid = getIntent().getStringExtra("institutionid"); if (riskScore != 0 || expScore != 0 || incomeScore != 0) { mRatingBar1.setEnabled(false); mRatingBar2.setEnabled(false); mRatingBar3.setEnabled(false); } mRatingBar1.setRating(riskScore); mRatingBar2.setRating(expScore); mRatingBar3.setRating(incomeScore); } @Override protected void updateUI() { } @Override protected void processLogic() { mheadView.setLeftImgClickListener(new HeadViewMain.LeftImgClickListner() { @Override public void onLeftImgClick() { ActivityUtil.finishActivity(baseContext); } }); } @OnClick({R.id.tv_commit}) public void click(View view) { final int num1 = mRatingBar1.getNum(); final int num2 = mRatingBar2.getNum(); final int num3 = mRatingBar3.getNum(); final String userId = PreferenceUtils.getInstance(baseContext).readUserInfo().getUser_id(); if(TextUtils.isEmpty(userId)){ ActivityUtil.startActivity(baseContext,new Intent(baseContext,LoginActivity.class)); return; } if (riskScore != 0 || expScore != 0 || incomeScore != 0) { ToastUtil.showToastText("对不起,您已经参与过评分"); } else { if (TextUtils.isEmpty(userId)) { ActivityUtil.startActivity(baseContext, new Intent(this, LoginActivity.class)); return; } InstitutionAttribute.DoEvaluateReq req = InstitutionAttribute.DoEvaluateReq.newBuilder(). setExpScore(num2).setIncomeScore(num3).setRiskScore(num1).setInstUserId(institutionid).setMyUserId(userId).build(); TiangongClient.instance().send("chronos", "do_evaluate", req.toByteArray(), new BaseHandlerClass() { public void onSuccess(byte[] buffer) { try { final InstitutionAttribute.DoEvaluateResponse response = InstitutionAttribute.DoEvaluateResponse.parseFrom(buffer); MyApp.getMainThreadHandler().postAtFrontOfQueue(new Runnable() { public void run() { if (response.getErrorno() == 0) { setResult(response, num1, num2, num3); } } }); } catch (InvalidProtocolBufferException e) { e.printStackTrace(); } } }); } } private void setResult(InstitutionAttribute.DoEvaluateResponse response, int num1, int num2, int num3) { Intent intent = new Intent(); intent.putExtra("riskScore", num1); intent.putExtra("expScore", num2); intent.putExtra("incomeScore", num3); setResult(Constants.RATING, intent); ActivityUtil.finishActivity(baseContext); } }
package com.zhicai.byteera.activity.myhome.activity; import android.app.Activity; import android.content.Intent; import android.view.View; import android.widget.AdapterView; import android.widget.ListView; import com.zhicai.byteera.R; import com.zhicai.byteera.activity.BaseActivity; import com.zhicai.byteera.activity.knowwealth.view.KnowWealthDetailActivity; import com.zhicai.byteera.activity.myhome.adapter.MyCollectAdapter; import com.zhicai.byteera.activity.myhome.interfaceview.MyShoucangActivityIV; import com.zhicai.byteera.activity.myhome.presenter.MyShoucangActivityPre; import com.zhicai.byteera.commonutil.ActivityUtil; import com.zhicai.byteera.service.information.InformationSecondary; import com.zhicai.byteera.widget.HeadViewMain; import java.util.List; import butterknife.ButterKnife; import butterknife.Bind; import butterknife.OnItemClick; import butterknife.OnItemLongClick; /** Created by bing on 2015/5/11. */ @SuppressWarnings("unused") public class MyShoucangActivity extends BaseActivity implements MyShoucangActivityIV { @Bind(R.id.head_view) HeadViewMain mHeadView; @Bind(R.id.list_view) ListView mListView; private MyCollectAdapter mAdapter; private MyShoucangActivityPre myShoucangActivityPre; @Override protected void loadViewLayout() { setContentView(R.layout.shou_cang_acitivity); ButterKnife.bind(this); myShoucangActivityPre = new MyShoucangActivityPre(this); } @Override protected void initData() { mAdapter = new MyCollectAdapter(this); mListView.setAdapter(mAdapter); mListView.setDividerHeight(0); myShoucangActivityPre.getDataFromNet(); } @OnItemClick(R.id.list_view) public void onItemClickListener(int position){ Intent intent = new Intent(baseContext, KnowWealthDetailActivity.class); InformationSecondary.TZixun item = mAdapter.getItem(position); intent.putExtra("zixun_id", item.getZixunId()); intent.putExtra("title", item.getTitle()); intent.putExtra("imgUrl", item.getImageUrl()); ActivityUtil.startActivity(baseContext, intent); } @OnItemLongClick(R.id.list_view) public boolean onItemLongClickListener(int position){ myShoucangActivityPre.showDeleteDialog(position); return true; } @Override protected void updateUI() { } @Override protected void processLogic() { mHeadView.setLeftImgClickListener(new HeadViewMain.LeftImgClickListner() { @Override public void onLeftImgClick() { ActivityUtil.finishActivity(baseContext); } }); } @Override public Activity getContext() { return this; } @Override public void setData(List<InformationSecondary.TZixun> zixunList) { mAdapter.setData(zixunList); mAdapter.notifyDataSetChanged(); } }
package ch06; public class InstanceMethod { static int sInt=0; int insInt=0; int insInt2=insInt; //static int sInt2=insInt2; 생성자가 필요함 static int sInt2=new InstanceMethod().insInt2;//이렇게 static void sInt() { System.out.println(sInt); //insInt(); 생성자가 필요하므로 불가능함 } void insInt() { System.out.println(insInt);//인스턴스 메서드이므로 인스턴스 변수를 그냥 사용가능 } void calling() { sInt(); insInt(); } public static void main(String[]args) { InstanceMethod ins=new InstanceMethod(); sInt=3; ins.insInt=2; sInt();//static은 생성자 필요없음, static 메서드라고함 ins.insInt();//static이 없을경우 생성자 필요, 인스턴스메서드라고 함 ins.calling();//인스턴스 메서드에서는 두종류의 메서드를 둘다 호출가능 } }
package lecturesharingproject.lecturesharing.service; import lecturesharingproject.lecturesharing.dao.UniversityDao; import lecturesharingproject.lecturesharing.entity.Lecture; import lecturesharingproject.lecturesharing.entity.Teacher; import lecturesharingproject.lecturesharing.entity.University; import lecturesharingproject.lecturesharing.entity.User; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; import java.util.Optional; @Service public class UniversityService implements IUniversityService { @Autowired public UniversityDao universityDao; @Override public University insertUniversity(University university) { return universityDao.save(university); } @Override public List<University> getAllUniversity() { return universityDao.findAll(); } @Override public Optional<University> getUniversity(int id) { return universityDao.findById(id); } @Override public void removeUniversity(int id) { universityDao.deleteById(id); } @Override public List<User> findUniversityUsers(String name) { return universityDao.findUniversityUsers(name); } @Override public University findUniversityByName(String name) { return universityDao.findUniversityByName(name); } @Override public List<Teacher> findUniversityTeachers(String university) { return universityDao.findUniversityTeachers(university); } @Override public List<Lecture> findUniversityLectures(String university) { return universityDao.findUniversityLectures(university); } }
package be.darkshark.parkshark.service; import be.darkshark.parkshark.api.dto.person.CreateMemberDTO; import be.darkshark.parkshark.api.dto.util.AddressDTO; import be.darkshark.parkshark.api.dto.util.LicensePlateDTO; import be.darkshark.parkshark.api.dto.util.PhoneNumberDTO; import be.darkshark.parkshark.domain.entity.person.Member; import be.darkshark.parkshark.domain.entity.util.*; import be.darkshark.parkshark.domain.repository.MemberRepository; import be.darkshark.parkshark.service.mapper.MemberMapper; import org.checkerframework.checker.units.qual.A; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.mockito.Mockito; import java.time.LocalDate; import java.util.List; import java.util.Optional; class MemberServiceTest { MemberRepository mockRepository; MemberMapper mockMapper; MemberService memberService; CreateMemberDTO createMemberDTO; Address address; PhoneNumber phoneNumber; LicensePlate licensePlate; @BeforeEach public void setUp() { mockRepository = Mockito.mock(MemberRepository.class); mockMapper = Mockito.mock(MemberMapper.class); memberService = new MemberService(mockRepository, mockMapper); address = new Address("some street", "1", 9160, "Lokeren"); phoneNumber = new PhoneNumber("+32", 477889911); licensePlate = new LicensePlate("010-aba", "Belgium"); // memberEntity = new Member(1L, "Jeroen", "De Man", address, phoneNumber,new MailAddress("some@Mail.com"), // licensePlate, MemberShipLevel.BRONZE); createMemberDTO = new CreateMemberDTO(); createMemberDTO.setAddress(new AddressDTO("some street", "1", 9160, "Lokeren")); createMemberDTO.setPhoneNumber(new PhoneNumberDTO("+32", 477889911)); createMemberDTO.setMailAddress("some@Mail.com"); createMemberDTO.setLicensePlate(new LicensePlateDTO("010-aba", "Belgium")); createMemberDTO.setMemberShipLevel("Bronze"); } @Test public void whenCreatingAMember_repositoryMethodSaveIsCalledOnce() { Member memberEntity = new Member("Jeroen", "De Man", address, phoneNumber, new MailAddress("some@Mail.com"), licensePlate, MemberShipLevel.BRONZE); Mockito.when(mockMapper.toEntity(createMemberDTO)).thenReturn(memberEntity); memberService.createMember(createMemberDTO); Mockito.verify(mockRepository, Mockito.times(1)).save(memberEntity); } @Test public void whenCreatingAMember_mapperMethodToEntityIsCalledOnce() { memberService.createMember(createMemberDTO); Mockito.verify(mockMapper, Mockito.times(1)).toEntity(createMemberDTO); } @Test public void whenCreatingAMember_theRegistrationDateIsSetToCurrentDate() { Member member = new Member("Jeroen", "De Man", address, phoneNumber, new MailAddress("some@Mail.com"), licensePlate, MemberShipLevel.BRONZE); Assertions.assertEquals(LocalDate.now(), member.getRegistrationDate()); } @Test public void whenRequestingAllMembers_repositoryMethodIsCalledOnce() { memberService.getAllMembers(); Mockito.verify(mockRepository, Mockito.times(1)).findAll(); } @Test public void whenRequestingAllMembers_listOfMemberDTOIsSize1() { Member memberEntity = new Member("Jeroen", "De Man", address, phoneNumber, new MailAddress("some@Mail.com"), licensePlate, MemberShipLevel.BRONZE); Iterable<Member> iterable = List.of(memberEntity); Mockito.when(mockRepository.findAll()).thenReturn(iterable); Assertions.assertEquals(1, memberService.getAllMembers().size()); } @Test void whenNoMemberShipLevelisGiven_setMemberShipLevelToBronze() { Assertions.assertEquals("BRONZE", memberService.checkMemberShipLevel(null)); } @Test void whenMemberShipLevelisEmpty_setMemberShipLevelToBronze() { Assertions.assertEquals("BRONZE", memberService.checkMemberShipLevel("")); } @Test void whenMemberShipLevelIsInvalid_throwsIllegalArgumentException() { Assertions.assertThrows(IllegalArgumentException.class, () -> memberService.checkMemberShipLevel("invalid")); } @Test void whenMemberShipLevelIsGold_setMemberShipLevelToGold() { Assertions.assertEquals("GOLD", memberService.checkMemberShipLevel("gold")); } @Test void whenMemberShipLevelIsSilver_setMemberShipLevelToSilver() { Assertions.assertEquals("SILVER", memberService.checkMemberShipLevel("silver")); } @Test void whenMemberShipLevelIsUpdated_assertMemberShipLevelIsCorrect() { Member member = new Member("Jeroen", "De Man", address, phoneNumber, new MailAddress("some@Mail.com"), licensePlate, MemberShipLevel.BRONZE); Optional<Member> memberOptional = Optional.of(member); Mockito.when(mockRepository.findById(1L)).thenReturn(memberOptional); memberService.updateMemberShipLevel(1L, "gold"); Assertions.assertEquals(MemberShipLevel.GOLD, member.getMemberShipLevel()); } }
package com.exam.models; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Value; import java.io.Serializable; import java.time.ZonedDateTime; import java.util.List; @Value @AllArgsConstructor @Builder public class Chat implements Serializable { private static final long serialVersionUID = 5436815518880496441L; private final Long id; private final Long creatorID; private final String name; private final String description; private final ZonedDateTime lastUpdate; private final ZonedDateTime startTime; private final ZonedDateTime lastRead; private final List<Long> participantsID; }
package com.example.pawansiwakoti.vicroadslicensetest.db; import android.arch.persistence.room.Database; import android.arch.persistence.room.Room; import android.arch.persistence.room.RoomDatabase; import android.arch.persistence.room.TypeConverters; import android.content.Context; import com.example.pawansiwakoti.vicroadslicensetest.model.Answers; import com.example.pawansiwakoti.vicroadslicensetest.model.Quiz; import com.example.pawansiwakoti.vicroadslicensetest.network.FeedbackSchema; /** * SQLite database used throughout this app * It is a singleton class synchronized among different threads */ @Database(entities = {Quiz.class, Answers.class}, version = 1, exportSchema = false) @TypeConverters({DateConverter.class, ArrayConverter.class}) public abstract class AppDatabase extends RoomDatabase { private static AppDatabase INSTANCE; private static final String DATABASE_NAME = "viclicencequiz"; public abstract QuizDao quizDao(); public abstract AnswerDao answerDao(); private static final Object LOCK = new Object(); public static AppDatabase getAppDatabase(Context context) { if (INSTANCE == null) { synchronized (LOCK) { if (INSTANCE == null) { INSTANCE = Room.databaseBuilder(context.getApplicationContext(), AppDatabase.class, DATABASE_NAME) .fallbackToDestructiveMigration() .build(); } } } return INSTANCE; } public static void destroyInstance() { INSTANCE = null; } }
package thegoldenapples; import java.util.Random; import javafx.scene.image.Image; /** * * @author Pantelis Chintiadis */ public class Ladon extends Actor{ protected static final Random randomNum = new Random(); int attackCounter = 0; int attackFrequency = 250; int attackBoundary = 300; boolean takeSides = false; boolean onScreen = false; boolean callAttack = false; boolean shootBullet = false; int spriteMoveR, spriteMoveL, destination, randomLocation, bulletRange, bulletOffset; double randomOffset; double electricBallGravity = 0.2; double goldenAppleGravity = 0.1; int pauseCounter = 0; boolean launchIt = false; boolean bulletType = false; int oArchelaosLocation; TheGoldenApples thegoldenApples; public Ladon(TheGoldenApples oArchelaos,String SVGdata, double xLocation, double yLocation, Image... spriteCels) { super(SVGdata, xLocation, yLocation, spriteCels); thegoldenApples = oArchelaos; spriteFrame.setTranslateX(xLocation); spriteFrame.setTranslateY(yLocation); isAlive = true; isBonus = true; hasValu = true; } @Override public void update() { if(!callAttack) { if(attackCounter >= attackFrequency) { attackCounter=0; spriteMoveR = 1300; spriteMoveL = -70; randomLocation = randomNum.nextInt(attackBoundary); oArchelaosLocation = (int) thegoldenApples.oArchelaos.getiY(); bulletType = randomNum.nextBoolean(); if(bulletType){ spriteFrame.setTranslateY(oArchelaosLocation); randomOffset = oArchelaosLocation + 5; } else { spriteFrame.setTranslateY(oArchelaosLocation); randomOffset = oArchelaosLocation + 5; } takeSides = randomNum.nextBoolean(); callAttack = true; } else { attackCounter+=1; } } else { initiateAttack(); } if (shootBullet){ shootProjectile(); if(pauseCounter >= 60) { launchIt = true; pauseCounter = 0; } else { pauseCounter++; } } } private void initiateAttack(){ if(!takeSides) { spriteFrame.setScaleX(1); this.setIsFlipH(false); if(!onScreen) { destination = 1000; if(spriteMoveR >= destination) { spriteMoveR-=4; spriteFrame.setTranslateX(spriteMoveR); } else { bulletOffset = 970; shootBullet = true; onScreen = true; } } if(onScreen && launchIt) { destination = 1300; if(spriteMoveR <= destination) { spriteMoveR+=2; spriteFrame.setTranslateX(spriteMoveR); } else { onScreen=false; callAttack=false; launchIt = false; loadBullet(); loadGoldenApple(); loadEnemy(); attackFrequency = 60 + randomNum.nextInt(480); } } } if(takeSides) { spriteFrame.setScaleX(-1); this.setIsFlipH(true); if(!onScreen) { destination = 100; //οριο κινησης δρακου στα δεξια if(spriteMoveL <= destination) { spriteMoveL+=4;//ταχυτητα δρακου απο την αριστερη προς την δεξια πλευρα spriteFrame.setTranslateX(spriteMoveL); } else { bulletOffset = 120; shootBullet = true; onScreen=true; } } if(onScreen && launchIt) { destination = -370; if(spriteMoveL >= destination) { spriteMoveL-=2; spriteFrame.setTranslateX(spriteMoveL); } else { onScreen = false; callAttack = false; launchIt = false; loadBullet(); loadGoldenApple(); loadEnemy(); attackFrequency = 60 + randomNum.nextInt(480); } } } } private void shootProjectile() { if(!bulletType && !takeSides) { thegoldenApples.electricBall.spriteFrame.setTranslateY(randomOffset); thegoldenApples.electricBall.spriteFrame.setScaleX(-1); thegoldenApples.electricBall.spriteFrame.setScaleY(1); //μεγεθος ηλεκτρικης μπαλας bulletRange = -350;// η ηλεκτρικες μπαλες φευγουν εκτος οθονης απο τα αριστερα if(bulletOffset >= bulletRange) { bulletOffset-=16; //ταχυτητα ηλεκτρικης μπαλας thegoldenApples.electricBall.spriteFrame.setTranslateX(bulletOffset); randomOffset = randomOffset + electricBallGravity; } else { shootBullet = false; } } if(!bulletType && takeSides) { thegoldenApples.electricBall.spriteFrame.setTranslateY(randomOffset); thegoldenApples.electricBall.spriteFrame.setScaleX(1); thegoldenApples.electricBall.spriteFrame.setScaleY(1); bulletRange = 1324; if(bulletOffset <= bulletRange) { bulletOffset+=16; thegoldenApples.electricBall.spriteFrame.setTranslateX(bulletOffset); randomOffset = randomOffset + electricBallGravity; } else { shootBullet = false; } } if(bulletType && !takeSides) { thegoldenApples.goldenApple.spriteFrame.setTranslateY(randomOffset); thegoldenApples.goldenApple.spriteFrame.setScaleX(-1); thegoldenApples.goldenApple.spriteFrame.setScaleY(1); bulletRange = -350; if(bulletOffset >= bulletRange) { bulletOffset-=14; thegoldenApples.goldenApple.spriteFrame.setTranslateX(bulletOffset); randomOffset = randomOffset + goldenAppleGravity; } else { shootBullet = false; } } if(bulletType && takeSides) { thegoldenApples.goldenApple.spriteFrame.setTranslateY(randomOffset); thegoldenApples.goldenApple.spriteFrame.setScaleX(1); thegoldenApples.goldenApple.spriteFrame.setScaleY(1); bulletRange = 1324; if(bulletOffset <= bulletRange) { bulletOffset+=14; thegoldenApples.goldenApple.spriteFrame.setTranslateX(bulletOffset); randomOffset = randomOffset + goldenAppleGravity; } else { shootBullet = false; } } } private void loadBullet() { for (int i=0; i<thegoldenApples.castDirector.getCurrentCast().size(); i++) { Actor object = thegoldenApples.castDirector.getCurrentCast().get(i); if(object.equals(thegoldenApples.electricBall)) { return; } } thegoldenApples.castDirector.addCurrentCast(thegoldenApples.electricBall); thegoldenApples.root.getChildren().add(thegoldenApples.electricBall.spriteFrame); } private void loadGoldenApple() { for (int i=0; i<thegoldenApples.castDirector.getCurrentCast().size(); i++) { Actor object = thegoldenApples.castDirector.getCurrentCast().get(i); if(object.equals(thegoldenApples.goldenApple)) { return;} } thegoldenApples.castDirector.addCurrentCast(thegoldenApples.goldenApple); thegoldenApples.root.getChildren().add(thegoldenApples.goldenApple.spriteFrame); } private void loadEnemy() { for (int i=0; i<thegoldenApples.castDirector.getCurrentCast().size(); i++) { Actor object = thegoldenApples.castDirector.getCurrentCast().get(i); if(object.equals(thegoldenApples.ladonas)) { return;} } thegoldenApples.castDirector.addCurrentCast(thegoldenApples.ladonas); thegoldenApples.root.getChildren().add(thegoldenApples.ladonas.spriteFrame); } }
/******************************************************************************* * Copyright 2014 See AUTHORS file. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package dk.sidereal.lumm.components.pathfinding; import java.util.HashMap; import com.badlogic.gdx.Input.Keys; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.graphics.g2d.GlyphLayout; import com.badlogic.gdx.graphics.g2d.Sprite; import dk.sidereal.lumm.architecture.Lumm; import dk.sidereal.lumm.architecture.LummObject; import dk.sidereal.lumm.architecture.concrete.ConcreteLummComponent; /** * Handles the creation of {@link PathfindingMap} objects. * * @author Claudiu Bele */ public class PathfindingHandler extends ConcreteLummComponent { // region fields private static HashMap<String, PathfindingMap> maps; public PathfindingMap map; public static Sprite debugClosed; public static Sprite debugOpen; public static float nodeSizeDebug = 0.9f; public static float lineThickness = 10; public static BitmapFont font; public static GlyphLayout glyphLayout; // endregion fields // region constructors public PathfindingHandler(LummObject obj) { super(obj); setDebugToggleKeys(Keys.CONTROL_LEFT, Keys.X); } @Override protected void initialiseClass() { if (maps == null) { maps = new HashMap<String, PathfindingMap>(); } if (!Lumm.debug.isEnabled()) return; if (font == null) { font = Lumm.assets.get(Lumm.assets.frameworkAssetsFolder + "Blocks.fnt", BitmapFont.class); font.setColor(Color.BLACK); font.getData().setScale(2); // font.setScale(2); } if (glyphLayout == null) { glyphLayout = new GlyphLayout(); } if (debugOpen == null) { debugOpen = new Sprite(); debugOpen.setColor(new Color(0, 1, 0, 0.5f)); } if (debugClosed == null) { debugClosed = new Sprite(); debugClosed.setColor(new Color(1, 0, 0, 0.5f)); } } // endregion constructors // region methods @Override public void onUpdate() { } public void addMap(String name, int width, int height) { map = new PathfindingMap(width, height); maps.put(name, map); } @Override public void onDebug() { if (map != null) { for (int i = 0; i < map.nodesX; i++) { for (int j = 0; j < map.nodesY; j++) { float nodeX = map.getNodeX(i); float nodeY = map.getNodeY(j); glyphLayout.setText(font, i + ", " + j); font.draw(object.getSceneLayer().spriteBatch, glyphLayout, (int) nodeX - glyphLayout.width / 2f, (int) nodeY + glyphLayout.height / 2f); if (map.nodes[i][j].access[0] == false) { debugClosed.setBounds(nodeX - map.getNodeSize().x / 2 + 1, nodeY - (map.getNodeSize().y * nodeSizeDebug) / 2, lineThickness, map.getNodeSize().y * nodeSizeDebug); debugClosed.draw(object.getSceneLayer().spriteBatch); } else { debugOpen.setBounds(nodeX - map.getNodeSize().x / 2 + 1, nodeY - (map.getNodeSize().y * nodeSizeDebug) / 2, lineThickness, map.getNodeSize().y * nodeSizeDebug); debugOpen.draw(object.getSceneLayer().spriteBatch); } if (map.nodes[i][j].access[1] == false) { debugClosed.setBounds(nodeX + map.getNodeSize().x / 2 - lineThickness - 1, nodeY - (map.getNodeSize().y * nodeSizeDebug) / 2, lineThickness, map.getNodeSize().y * nodeSizeDebug); debugClosed.draw(object.getSceneLayer().spriteBatch); } else { debugOpen.setBounds(nodeX + map.getNodeSize().x / 2 - lineThickness - 1, nodeY - (map.getNodeSize().y * nodeSizeDebug) / 2, lineThickness, map.getNodeSize().y * nodeSizeDebug); debugOpen.draw(object.getSceneLayer().spriteBatch); } if (map.nodes[i][j].access[2] == false) { debugClosed.setBounds(nodeX - (map.getNodeSize().x * nodeSizeDebug) / 2, nodeY - map.getNodeSize().y / 2 + 1, map.getNodeSize().x * nodeSizeDebug, lineThickness); debugClosed.draw(object.getSceneLayer().spriteBatch); } else { debugOpen.setBounds(nodeX - (map.getNodeSize().x * nodeSizeDebug) / 2, nodeY - map.getNodeSize().y / 2 + 1, map.getNodeSize().x * nodeSizeDebug, lineThickness); debugOpen.draw(object.getSceneLayer().spriteBatch); } if (map.nodes[i][j].access[3] == false) { debugClosed.setBounds(nodeX - (map.getNodeSize().x * nodeSizeDebug) / 2, nodeY + map.getNodeSize().y / 2 - lineThickness - 1, map.getNodeSize().x * nodeSizeDebug, lineThickness); debugClosed.draw(object.getSceneLayer().spriteBatch); } else { debugOpen.setBounds(nodeX - (map.getNodeSize().x * nodeSizeDebug) / 2, nodeY + map.getNodeSize().y / 2 - lineThickness - 1, map.getNodeSize().x * nodeSizeDebug, lineThickness); debugOpen.draw(object.getSceneLayer().spriteBatch); } } } } } public static PathfindingMap getMap(String mapName) { if (!maps.containsKey(mapName)) return null; return maps.get(mapName); } // endregion methods }
package com.chinasofti.model; public class Picture {//Ïß·ͼƬ±í private Integer pictyreid;//ͼƬ±àºÅ private String introduction;//ͼƬ½éÉÜ private String name;//ͼƬÃû³Æ private String lineid;//Ïß·±àºÅ public Integer getPictyreid() { return pictyreid; } public void setPictyreid(Integer pictyreid) { this.pictyreid = pictyreid; } public String getIntroduction() { return introduction; } public void setIntroduction(String introduction) { this.introduction = introduction == null ? null : introduction.trim(); } public String getName() { return name; } public void setName(String name) { this.name = name == null ? null : name.trim(); } public String getLineid() { return lineid; } public void setLineid(String lineid) { this.lineid = lineid == null ? null : lineid.trim(); } @Override public String toString() { return "Picture [pictyreid=" + pictyreid + ", introduction=" + introduction + ", name=" + name + ", lineid=" + lineid + "]"; } }
package com.foodaholic.utils; import android.annotation.TargetApi; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.pm.PackageManager; import android.database.Cursor; import android.graphics.Point; import android.graphics.Typeface; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.net.Uri; import android.os.Build; import android.provider.DocumentsContract; import android.provider.MediaStore; import androidx.core.view.MenuItemCompat; import androidx.appcompat.app.AlertDialog; import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.widget.Toolbar; import android.view.Display; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.Window; import android.view.WindowManager; import android.widget.TextView; import android.widget.Toast; import com.foodaholic.main.CartActivity; import com.foodaholic.main.LoginActivity; import com.foodaholic.main.R; import com.foodaholic.interfaces.InterAdListener; import com.foodaholic.items.ItemRestaurant; import com.foodaholic.items.ItemUser; import com.foodaholic.sharedPref.SharePref; import java.util.Calendar; public class Methods { private Context _context; private InterAdListener interAdListener; public Methods(Context context) { this._context = context; } public Methods(Context context, InterAdListener interAdListener) { this._context = context; //loadInter(); this.interAdListener = interAdListener; } public boolean isNetworkAvailable() { ConnectivityManager cm = (ConnectivityManager) _context.getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo netInfoMob = cm.getNetworkInfo(ConnectivityManager.TYPE_MOBILE); NetworkInfo netInfoWifi = cm.getNetworkInfo(ConnectivityManager.TYPE_WIFI); return (netInfoMob != null && netInfoMob.isConnectedOrConnecting()) || (netInfoWifi != null && netInfoWifi.isConnectedOrConnecting()); } public int getScreenWidth() { int columnWidth; WindowManager wm = (WindowManager) _context .getSystemService(Context.WINDOW_SERVICE); Display display = wm.getDefaultDisplay(); final Point point = new Point(); point.x = display.getWidth(); point.y = display.getHeight(); columnWidth = point.x; return columnWidth; } private static void openLogin(Context context) { Intent intent = new Intent(context, LoginActivity.class); intent.putExtra("from", "app"); context.startActivity(intent); } private void logout(AppCompatActivity activity) { changeRemPass(); Constant.isLogged = false; Constant.itemUser = new ItemUser("", "", "", "", "", ""); Constant.menuCount = 0; Intent intent1 = new Intent(_context, LoginActivity.class); intent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); _context.startActivity(intent1); activity.finish(); } public void clickLogin() { if (Constant.isLogged) { logout((AppCompatActivity) _context); ((AppCompatActivity) _context).finish(); Toast.makeText(_context, _context.getResources().getString(R.string.logout_success), Toast.LENGTH_SHORT).show(); } else { openLogin(_context); } } public void setStatusColor(Window window, Toolbar toolbar) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); window.setStatusBarColor(_context.getResources().getColor(R.color.status_bar)); if (toolbar != null) { toolbar.setElevation(10); } } } public static boolean isPackageInstalled(String packagename, PackageManager packageManager) { try { return packageManager.getApplicationInfo(packagename, 0).enabled; } catch (PackageManager.NameNotFoundException e) { return false; } } public void changeRemPass() { SharePref sharePref = new SharePref(_context); sharePref.setSharedPreferences("", ""); } public void changeCart(Menu menu) { View cart = MenuItemCompat.getActionView(menu.findItem(R.id.menu_cart_search)); if (Constant.isLogged) { TextView textView = cart.findViewById(R.id.textView_menu_no); textView.setTypeface(textView.getTypeface(), Typeface.BOLD); textView.setText("" + Constant.menuCount); cart.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (Constant.isLogged) { Intent intent = new Intent(_context, CartActivity.class); _context.startActivity(intent); } else { Intent i = new Intent(_context, LoginActivity.class); _context.startActivity(i); } } }); } else { MenuItem menuItem = menu.findItem(R.id.menu_cart_search); menuItem.setVisible(false); } } @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public void forceRTLIfSupported(Window window) { if (_context.getResources().getString(R.string.isRTL).equals("true")) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { window.getDecorView().setLayoutDirection(View.LAYOUT_DIRECTION_RTL); } } } public String getPathImage(Uri uri) { try { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { String filePath = ""; String wholeID = DocumentsContract.getDocumentId(uri); // Split at colon, use second item in the array String id = wholeID.split(":")[1]; String[] column = {MediaStore.Images.Media.DATA}; // where id is equal to String sel = MediaStore.Images.Media._ID + "=?"; Cursor cursor = _context.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, column, sel, new String[]{id}, null); int columnIndex = cursor.getColumnIndex(column[0]); if (cursor.moveToFirst()) { filePath = cursor.getString(columnIndex); } cursor.close(); return filePath; } else { if (uri == null) { return null; } // try to retrieve the image from the media store first // this will only work for images selected from gallery String[] projection = {MediaStore.Images.Media.DATA}; Cursor cursor = _context.getContentResolver().query(uri, projection, null, null, null); if (cursor != null) { int column_index = cursor .getColumnIndexOrThrow(MediaStore.Images.Media.DATA); cursor.moveToFirst(); String retunn = cursor.getString(column_index); cursor.close(); return retunn; } // this is our fallback here return uri.getPath(); } } catch (Exception e) { e.printStackTrace(); if (uri == null) { return null; } // try to retrieve the image from the media store first // this will only work for images selected from gallery String[] projection = {MediaStore.Images.Media.DATA}; Cursor cursor = _context.getContentResolver().query(uri, projection, null, null, null); if (cursor != null) { int column_index = cursor .getColumnIndexOrThrow(MediaStore.Images.Media.DATA); cursor.moveToFirst(); String returnn = cursor.getString(column_index); cursor.close(); return returnn; } // this is our fallback here return uri.getPath(); } } public String getOpenTime(ItemRestaurant itemRestaurant) { Calendar calendar = Calendar.getInstance(); int day = calendar.get(Calendar.DAY_OF_WEEK); switch (day) { case Calendar.SUNDAY: return itemRestaurant.getSunday(); case Calendar.MONDAY: return itemRestaurant.getMonday(); case Calendar.TUESDAY: return itemRestaurant.getTuesday(); case Calendar.WEDNESDAY: return itemRestaurant.getWednesday(); case Calendar.THURSDAY: return itemRestaurant.getThursday(); case Calendar.FRIDAY: return itemRestaurant.getFriday(); case Calendar.SATURDAY: return itemRestaurant.getSaturday(); default: return ""; } } public void showToast(String message) { Toast.makeText(_context, message, Toast.LENGTH_SHORT).show(); } public boolean isEmailValid(String email) { return email.contains("@"); } public boolean isPasswordValid(String password) { return password.length() > 0; } public String getCartIds() { String ids = ""; if (Constant.arrayList_cart.size() > 0) { ids = Constant.arrayList_cart.get(0).getId(); for (int i = 1; i < Constant.arrayList_cart.size(); i++) { ids = ids + "," + Constant.arrayList_cart.get(i).getId(); } } return ids; } public void showInterAd(final int pos, final String type) { interAdListener.onClick(pos, type); } public void openSearchFilter() { new AlertDialog.Builder(_context) .setCancelable(false) .setTitle(_context.getString(R.string.filter)) .setSingleChoiceItems(Constant.search_type_array, Constant.search_type_pos, null) .setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton) { dialog.dismiss(); Constant.search_type_pos = ((AlertDialog) dialog).getListView().getCheckedItemPosition(); if (Constant.search_type_pos == 0) { Constant.search_type = "menu"; } else { Constant.search_type = "Restaurant"; } } }) .show(); } }
package com.eegeo.mapapi.indoorentities; import androidx.annotation.NonNull; import androidx.annotation.UiThread; import androidx.annotation.WorkerThread; import com.eegeo.mapapi.util.NativeApiObject; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.concurrent.Callable; /** * Maintains information about indoor map entities belonging to an indoor map with specified id. * Entity information is updated as map tiles stream in. Change notification is available via * the supplied OnIndoorMapEntityInformationChangedListener. */ public class IndoorMapEntityInformation extends NativeApiObject { private static final AllowHandleAccess m_allowHandleAccess = new AllowHandleAccess(); private final IndoorMapEntityInformationApi m_indoorMapEntityInformationApi; private final String m_indoorMapId; private List<IndoorMapEntity> m_indoorMapEntities; private IndoorMapEntityLoadState m_indoorMapEntityLoadState; private OnIndoorMapEntityInformationChangedListener m_indoorMapEntityInformationChangedListener; /** * @eegeo.internal */ @UiThread public IndoorMapEntityInformation( @NonNull final IndoorMapEntityInformationApi indoorMapEntityInformationApi, @NonNull final String indoorMapId, final OnIndoorMapEntityInformationChangedListener indoorMapEntityInformationChangedListener ) { super(indoorMapEntityInformationApi.getNativeRunner(), indoorMapEntityInformationApi.getUiRunner(), new Callable<Integer>() { @Override public Integer call() throws Exception { return indoorMapEntityInformationApi.create(indoorMapId, m_allowHandleAccess); } }); m_indoorMapEntityInformationApi = indoorMapEntityInformationApi; m_indoorMapId = indoorMapId; m_indoorMapEntities = new ArrayList<>(); m_indoorMapEntityLoadState = IndoorMapEntityLoadState.None; m_indoorMapEntityInformationChangedListener = indoorMapEntityInformationChangedListener; submit(new Runnable() { @WorkerThread @Override public void run() { m_indoorMapEntityInformationApi.register(IndoorMapEntityInformation.this, m_allowHandleAccess); } }); } /** * Gets the string id of the indoor map associated with this IndoorMapEntityInformation object. * @return The indoor map id. */ public String getIndoorMapId() { return m_indoorMapId; } /** * Gets IndoorMapEntity objects that are currently present. * @return The IndoorMapEntity objects currently available for the associated indoor map. */ public List<IndoorMapEntity> getIndoorMapEntities() { return m_indoorMapEntities; } /** * Gets the current indoor map load state for the associated indoor map. * @return The indoor map load state. */ public IndoorMapEntityLoadState getLoadState() { return m_indoorMapEntityLoadState; } /** * @eegeo.internal */ @UiThread public void destroy() { submit(new Runnable() { @WorkerThread @Override public void run() { m_indoorMapEntityInformationApi.destroy(IndoorMapEntityInformation.this, IndoorMapEntityInformation.m_allowHandleAccess); } }); } @UiThread void updateFromNative(IndoorMapEntity indoorMapEntities[], IndoorMapEntityLoadState indoorMapEntityLoadState) { m_indoorMapEntities = Arrays.asList(indoorMapEntities); m_indoorMapEntityLoadState = indoorMapEntityLoadState; if (m_indoorMapEntityInformationChangedListener != null) { m_indoorMapEntityInformationChangedListener.onIndoorMapEntityInformationChanged(this); } } @WorkerThread int getNativeHandle(AllowHandleAccess allowHandleAccess) { if (allowHandleAccess == null) throw new NullPointerException("Null access token. Method is intended for use by BuildingsApi"); if (!hasNativeHandle()) throw new IllegalStateException("Native handle not available"); return getNativeHandle(); } static final class AllowHandleAccess { @WorkerThread private AllowHandleAccess() { } } }
package Tests; import org.openqa.selenium.support.PageFactory; import org.testng.Assert; import org.testng.annotations.Test; import Base.Base; import Pages.MyWishList; public class VerifyMyWishList{ @Test public void verifyMyWishLsit(){ MyWishList wl=PageFactory.initElements(Base.driver, MyWishList.class); wl.verifyMyWishList(); Assert.assertTrue(wl.assertactualvalue.equals(wl.aseertexpectedvalue)); } }
import java.util.Scanner; class Program { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = 15; int [] a = new int[n]; int num = 0; for(int i = 0; i < n; i++) { a[i] = scanner.nextInt(); } for(int i = 1; i < n - 1; i++) { if((a[i-1] < a[i]) && (a[i+1] > a[i])) { num++; } } System.out.println(num); } }
package com.redsun.platf.service.sys; import com.redsun.platf.entity.sys.SystemLanguage; import com.redsun.platf.entity.sys.SystemTheme; import java.util.List; import java.util.Map; /** * <p>Title : com.webapp </p> * <p>Description : </p> * <p>Copyright : Copyright (c) 2011</p> * <p>Company : FreedomSoft </p> * */ /** * @author dick pan * @version 1.0 * @since 1.0 * <p> * <H3>Change history</H3> * </p> * <p> * 2011/1/28 : Created * </p> * */ public interface ConfigLoaderService { // public abstract ConfigLoaderService getInstance(); /** * get system themes from configuation.xml * * @return list object :Theme */ public abstract List<SystemLanguage> getLanguages(); /** * get system language from configuation.xml * * @return map list key:language ,value: description */ public abstract Map<String, String> getLanguagesMap(); /** * get system themes from configuation.xml * * @return list object :Theme */ public abstract List<SystemTheme> getThemes(); /** * get system themes from configuation.xml * * @return map list key:theme ,value: description */ public abstract Map<String, String> getThemesMap(); }
/* * ################################################################ * * ProActive Parallel Suite(TM): The Java(TM) library for * Parallel, Distributed, Multi-Core Computing for * Enterprise Grids & Clouds * * Copyright (C) 1997-2011 INRIA/University of * Nice-Sophia Antipolis/ActiveEon * Contact: proactive@ow2.org or contact@activeeon.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation; version 3 of * the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * * If needed, contact us to obtain a release under GPL Version 2 or 3 * or a different license than the AGPL. * * Initial developer(s): The ActiveEon Team * http://www.activeeon.com/ * Contributor(s): * * ################################################################ * $$ACTIVEEON_INITIAL_DEV$$ */ package functionaltests.nodestate; import org.objectweb.proactive.core.node.Node; import org.ow2.proactive.resourcemanager.common.event.RMEventType; import org.ow2.proactive.resourcemanager.core.RMCore; import org.ow2.proactive.resourcemanager.frontend.ResourceManager; import org.ow2.proactive.resourcemanager.nodesource.NodeSource; import org.ow2.proactive.resourcemanager.nodesource.infrastructure.DefaultInfrastructureManager; import org.ow2.proactive.resourcemanager.nodesource.policy.StaticPolicy; import org.ow2.tests.FunctionalTest; import functionaltests.RMTHelper; /** * This class tests a particular case of node add/removal where a race condition * exists and that lead to dead lock in the past. * Running this test ensure that at least the dead lock doesn't occur. */ public class TestAddRemoveAll extends FunctionalTest { String nodeName = "nodeDeadLock"; @org.junit.Test public void action() throws Exception { ResourceManager resourceManager = RMTHelper.getResourceManager(); RMTHelper.log("Add/RemoveAll"); resourceManager.createNodeSource(NodeSource.DEFAULT, DefaultInfrastructureManager.class.getName(), null, StaticPolicy.class.getName(), null); RMTHelper.waitForNodeSourceEvent(RMEventType.NODESOURCE_CREATED, NodeSource.DEFAULT); Node nodeToAdd = RMTHelper.createNode(nodeName); resourceManager.addNode(nodeToAdd.getNodeInformation().getURL(), NodeSource.DEFAULT) .getBooleanValue(); //at this time, nodes maybe fully added in the nodesource but not in the core //the next removal may fail for some nodes that are not known by the core... RMCore resourceManagerIMPL = (RMCore) resourceManager; resourceManagerIMPL.removeAllNodes(NodeSource.DEFAULT, true); if (resourceManager.getState().getTotalNodesNumber() != 0) { RMTHelper.log("The removeAll method in RMCore didn't removed all nodes"); } else { RMTHelper.log("The removeAll method in RMCore did its job well"); } } }
package ru.job4j.lsp.interfaces; public interface Tractor { void dig(); void cleanRoad(); void freight(); }
import java.util.Scanner; public class SortArray { public static int[] sortByDecrease(int[] array) { int temp; for (int i = 0; i < array.length; i++) { for (int j = i + 1; j < array.length; j++) { if (array[i] < array[j]) { temp = array[i]; array[i] = array[j]; array[j] = temp; } } } return array; } public static void main(String[] args) throws Exception { Scanner input = new Scanner(System.in); System.out.println("Enter array length: "); int size = input.nextInt(); int array[] = new int[size]; System.out.println("Insert array elements:"); for (int i = 0; i < size; i++) { array[i] = input.nextInt(); } System.out.print ("Inserted array elements:"); for (int i = 0; i < size; i++) { System.out.print (" " + array[i]); } System.out.println(); int [] sortArr = sortByDecrease(array); System.out.print("Sorted array: "); for (int i = 0; i < sortArr.length; i++) { System.out.print(sortArr[i] + " "); } } }
package oose; public class Entreprise { String name; int nbEmployeMax; private int nbCommerciauxMax; Employe tabEmploye[] = new Employe[nbEmployeMax]; private int nbEmploye = 0; private int nbCommerciaux = 0; public Entreprise(int nbEmployeMax, int nbCommerciauxMax) { this.nbEmployeMax = nbEmployeMax; this.nbCommerciauxMax = nbCommerciauxMax; } public void addEmploye (Employe newE) throws NbCommerciauxException{ if (newE instanceof Commercial){ if(nbCommerciaux == nbCommerciauxMax){ throw new NbCommerciauxException ("Trop de Commerciaux", this); } } } //GETTER AND SETTER public int getNbEmploye() { return nbEmploye; } public void setNbEmploye(int nbEmploye) { this.nbEmploye = nbEmploye; } public int getNbCommerciaux() { return nbCommerciaux; } public void setNbCommerciaux(int nbCommerciaux) { this.nbCommerciaux = nbCommerciaux; } public int getNbCommerciauxMax() { return nbCommerciauxMax; } public void setNbCommerciauxMax(int nbCommerciauxMax) { this.nbCommerciauxMax = nbCommerciauxMax; } public String getName() { return name; } }
package com.k2data.k2app.chart; /** * @author lidong9144@163.com 17-3-27. */ public enum ChartType { BAR, LINE, PIE }
package wasdev.sample.servlet; import java.io.IOException; import java.util.ArrayList; import java.util.List; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.cloudant.client.api.ClientBuilder; import com.cloudant.client.api.CloudantClient; import com.mongodb.MongoClient; import com.mongodb.MongoClientOptions; import com.mongodb.client.*; import com.mongodb.client.model.Filters; import com.mongodb.MongoClientURI; import org.bson.Document; import org.bson.conversions.Bson; /** * Servlet implementation class SimpleServlet */ @WebServlet("/SimpleServlet") public class SimpleServlet extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); response.getWriter().print("Hello World!"); CloudantClient client = ClientBuilder.account("a9d8c3a6-3006-49af-92e5-b3da10409a8c-bluemix") .username("a9d8c3a6-3006-49af-92e5-b3da10409a8c-bluemix") .password("f92cbd858f5958091cae58f6edc0e04bda5849b604461fae8ad8d96f5d4ce8d3") .build(); System.out.println("Server Version: " + client.serverVersion()); List<String> databases = client.getAllDbs(); System.out.println("All my databases : "); for ( String db : databases ) { System.out.println(db); } System.out.println("CHL TEST: java home:" + System.getenv("java.home")); try { MongoClientOptions.Builder build = new MongoClientOptions.Builder(); build.connectionsPerHost(50); //如果当前所有的connection都在使用中,则每个connection上可以有50个线程排队等待 build.threadsAllowedToBlockForConnectionMultiplier(50); build.connectTimeout(1*60*1000); build.maxWaitTime(2*60*1000); MongoClientOptions options = build.build(); MongoClientURI uri = new MongoClientURI("mongodb://admin:PZFNDYXJCNYXLDQD@bluemix-sandbox-dal-9-portal.3.dblayer.com:15792/admin?ssl=true",build); MongoClient mongoClient = new MongoClient(uri); MongoDatabase mongoDatabase = mongoClient.getDatabase("movie"); MongoCollection<Document> mongoCollection = mongoDatabase.getCollection("user"); // insert a document Document document = new Document("x", 1); mongoCollection.insertOne(document); document.append("x", 2).append("y", 3); // replace a document mongoCollection.replaceOne(Filters.eq("_id", document.get("_id")), document); // find documents List<Document> foundDocument = mongoCollection.find().into(new ArrayList<Document>()); }catch(Exception e) { e.printStackTrace(); } } }
/* * Copyright (c) 2013 ICM Uniwersytet Warszawski All rights reserved. * See LICENCE.txt file for licensing information. */ package pl.edu.icm.unity.engine.internal; import java.util.Collection; import org.apache.ibatis.session.SqlSession; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import pl.edu.icm.unity.db.DBAttributes; import pl.edu.icm.unity.db.DBIdentities; import pl.edu.icm.unity.db.generic.credreq.CredentialRequirementDB; import pl.edu.icm.unity.db.resolvers.IdentitiesResolver; import pl.edu.icm.unity.engine.transactions.SqlSessionTL; import pl.edu.icm.unity.engine.transactions.Transactional; import pl.edu.icm.unity.exceptions.EngineException; import pl.edu.icm.unity.exceptions.IllegalIdentityValueException; import pl.edu.icm.unity.server.api.internal.IdentityResolver; import pl.edu.icm.unity.server.authn.EntityWithCredential; import pl.edu.icm.unity.server.utils.Log; import pl.edu.icm.unity.sysattrs.SystemAttributeTypes; import pl.edu.icm.unity.types.EntityState; import pl.edu.icm.unity.types.authn.CredentialRequirements; import pl.edu.icm.unity.types.basic.Attribute; import pl.edu.icm.unity.types.basic.AttributeExt; import pl.edu.icm.unity.types.basic.EntityParam; import pl.edu.icm.unity.types.basic.IdentityTaV; /** * Default implementation of the identity resolver. Immutable. * @author K. Benedyczak */ @Component public class IdentityResolverImpl implements IdentityResolver { private static final Logger log = Log.getLogger(Log.U_SERVER, IdentityResolverImpl.class); private DBAttributes dbAttributes; private DBIdentities dbIdentities; private IdentitiesResolver dbResolver; private CredentialRequirementDB dbCredReq; @Autowired public IdentityResolverImpl(DBAttributes dbAttributes, CredentialRequirementDB dbCredReq, DBIdentities dbIdentities, IdentitiesResolver dbResolver) { this.dbAttributes = dbAttributes; this.dbIdentities = dbIdentities; this.dbResolver = dbResolver; this.dbCredReq = dbCredReq; } @Override @Transactional public EntityWithCredential resolveIdentity(String identity, String[] identityTypes, String credentialName) throws EngineException { SqlSession sql = SqlSessionTL.get(); long entityId = getEntity(identity, identityTypes, null, null, true, sql); EntityState entityState = dbIdentities.getEntityStatus(entityId, sql); if (entityState == EntityState.authenticationDisabled || entityState == EntityState.disabled) throw new IllegalIdentityValueException("Authentication is disabled for this entity"); EntityWithCredential ret = new EntityWithCredential(); if (credentialName != null) { CredentialRequirements credentialRequirements = resolveCredentialRequirements( entityId, sql); if (credentialRequirements.getRequiredCredentials().contains(credentialName)) { Collection<AttributeExt<?>> credAttributes = dbAttributes.getAllAttributes( entityId, "/", true, SystemAttributeTypes.CREDENTIAL_PREFIX+credentialName, sql); if (credAttributes.size() > 0) { Attribute<?> a = credAttributes.iterator().next(); ret.setCredentialValue((String)a.getValues().get(0)); } } ret.setCredentialName(credentialName); } ret.setEntityId(entityId); return ret; } private CredentialRequirements resolveCredentialRequirements(long entityId, SqlSession sql) throws EngineException { Collection<AttributeExt<?>> credReqAttrs = dbAttributes.getAllAttributes( entityId, "/", true, SystemAttributeTypes.CREDENTIAL_REQUIREMENTS, sql); Attribute<?> cra = credReqAttrs.iterator().next(); String cr = (String) cra.getValues().get(0); return dbCredReq.get(cr, sql); } @Override @Transactional public long resolveIdentity(String identity, String[] identityTypes, String target, String realm) throws IllegalIdentityValueException { SqlSession sql = SqlSessionTL.get(); long entityId = getEntity(identity, identityTypes, target, realm, false, sql); return entityId; } private long getEntity(String identity, String[] identityTypes, String target, String realm, boolean requireConfirmed, SqlSession sqlMap) throws IllegalIdentityValueException { for (String identityType: identityTypes) { IdentityTaV tav = new IdentityTaV(identityType, identity, target, realm); EntityParam entityParam = new EntityParam(tav); try { long ret = dbResolver.getEntityId(entityParam, sqlMap); if (!requireConfirmed || dbIdentities.isIdentityConfirmed(sqlMap, tav)) { return ret; } else { log.debug("Identity " + identity + " was found but is not confirmed, " + "not returning it for loggin in"); } } catch (EngineException e) { //ignored } } throw new IllegalIdentityValueException("No identity with value " + identity); } }
package com.databasetest1; import android.util.Log; import com.android.volley.AuthFailureError; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.StringRequest; import com.google.gson.Gson; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.concurrent.Future; /** * Created by ASUS on 2016/7/19. */ public class ValleyRequest { private RequestQueue mRequestQueue = null; public ValleyRequest(RequestQueue mRequestQueue){ this.mRequestQueue = mRequestQueue; } // GET请求 public void StringRequest1(String address) { StringRequest stringRequest = new StringRequest(address, new Response.Listener<String>() { @Override public void onResponse(String s) { Log.d("ValleyRequest", s); JsonBean jsonBean = new Gson().fromJson(s,JsonBean.class); Log.d("ValleyRequest",jsonBean.getError_code() + ""); } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError volleyError) { Log.d("ValleyRequest", volleyError.getMessage(), volleyError); } }); mRequestQueue.add(stringRequest); } // POST请求 public void StringRequest2(String address, final String admin, final String password) { StringRequest stringRequest = new StringRequest(Request.Method.POST, address, new Response.Listener<String>() { @Override public void onResponse(String s) { } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError volleyError) { } }) { protected Map<String, String> getParams() throws AuthFailureError { Map<String, String> map = new HashMap<>(); map.put("admin", admin); map.put("password", password); return map; } }; mRequestQueue.add(stringRequest); } }
package com.gao.commonProxy; public interface Animal { void eat(String food); void play(); }
package com.github.simy4.poc.model.converters; import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTypeConverter; import java.util.function.Function; public abstract class DynamoDBTypeConverterIso<S, T> implements DynamoDBTypeConverter<S, T> { private final Function<? super T, ? extends S> convert; private final Function<? super S, ? extends T> unconvert; protected DynamoDBTypeConverterIso( Function<? super T, ? extends S> convert, Function<? super S, ? extends T> unconvert) { this.convert = convert; this.unconvert = unconvert; } @Override public S convert(T t) { return convert.apply(t); } @Override public T unconvert(S s) { return unconvert.apply(s); } }
package org.epigeek.lguhc.commands; import org.bukkit.Bukkit; import org.bukkit.World; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; import org.epigeek.lguhc.Main; public class LgInit extends A_LgCommand implements CommandExecutor { private World world; public LgInit(Main plugin, World world) throws Exception { super(plugin, "lg-init"); this.world = world; } @Override public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { if (sender instanceof Player) { Player player = (Player) sender; if (!player.hasPermission("lg-init.use") && !player.isOp()) return returnError(sender, "you didn't have the permission to excute this commande"); } Bukkit.dispatchCommand(Bukkit.getConsoleSender(), "fill 20 150 20 -20 150 -20 minecraft:barrier"); Bukkit.dispatchCommand(Bukkit.getConsoleSender(), "fill 20 150 -20 20 153 20 minecraft:barrier"); Bukkit.dispatchCommand(Bukkit.getConsoleSender(), "fill -20 150 -20 -20 153 20 minecraft:barrier"); Bukkit.dispatchCommand(Bukkit.getConsoleSender(), "fill -20 150 -20 20 153 -20 minecraft:barrier"); Bukkit.dispatchCommand(Bukkit.getConsoleSender(), "fill -20 150 20 20 153 20 minecraft:barrier"); this.world.setSpawnLocation(0, 151, 0); return false; } }
package org.digdata.swustoj.base; import org.aspectj.lang.annotation.Pointcut; public class BasePointCut { /** * * @author wwhhf * @since 2016年6月1日 * @comment 所有controller方法 */ @Pointcut("execution(* org.digdata.swustoj.controller.*.*(..)) " + "|| execution(* org.digdata.swustoj.mybatis.dao.impl.*.*(..)) " + "|| execution(* org.digdata.swustoj.service.impl.*.*(..)) ") public void All() { } /** * * @author wwhhf * @since 2016年6月1日 * @comment 所有controller方法 */ @Pointcut("execution(* org.digdata.swustoj.controller.*.*(..)) ") public void ControllerPointCut() { } /** * * @author wwhhf * @since 2016年6月1日 * @comment 所有dao方法 */ @Pointcut("execution(* org.digdata.swustoj.mybatis.dao.impl.*.*(..)) " + "|| execution(* org.digdata.swustoj.service.impl.*.*(..)) ") public void ServiceAndDaoPointCut() { } /** * * @author wwhhf * @since 2016年6月1日 * @comment 所有dao方法 */ @Pointcut("execution(* org.digdata.swustoj.mybatis.dao.impl.*.*(..))") public void DaoPointCut() { } }
package lesson5; import lesson17.Fredj; public class DZ1 { public static void main(String[] args) { String str = "London is a capital of the great britain"; String reverse = new StringBuffer(str).reverse().toString(); System.out.println("Строка в обратном порядке: " + reverse); } public static class Main { public static void main(String[] args) { Fredj fredj = new Fredj(); try{ fredj.addProduct(null, 2); }catch (NullPointerException e){ System.out.println("пустой продукт!!!"); } fredj.addProduct("яблоко", 1); fredj.addProduct("груша", 3); fredj.addProduct("слива", 1); fredj.addProduct("сливки", 4); fredj.deleteProduct("груша", 3); fredj.printListProduct(); } } }
package org.seforge.monitor.web; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Date; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; import org.seforge.monitor.domain.ApacheSnap; import org.seforge.monitor.extjs.JsonObjectResponse; import org.seforge.monitor.utils.TimeUtils; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import flexjson.JSONSerializer; import flexjson.transformer.DateTransformer; @RequestMapping("/monitor/**") @Controller public class MonitorController { /* //To view the page: http://localhost:8080/PaaSMonitor/monitor?ip=192.168.4.168&jmxPort=8999&contextName=doc @RequestMapping(method = RequestMethod.GET) public String get(@RequestParam("ip") String ip, @RequestParam("jmxPort") String jmxPort, @RequestParam("contextName") String contextName) { return "monitor/index"; } @RequestMapping(value = "/snap", method = RequestMethod.GET) public ResponseEntity<String> getSnap(@RequestParam("ip") String ip, @RequestParam("jmxPort") String jmxPort, @RequestParam("contextName") String contextName) { JsonObjectResponse response = new JsonObjectResponse(); HttpStatus returnStatus; JmxAppServer appServer = JmxAppServer.findJmxAppServerByIpAndJmxPort(ip, jmxPort); if(appServer == null){ appServer = new JmxAppServer(); appServer.setIp(ip); appServer.setJmxPort(jmxPort); try { appServer.init(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } appServer.persist(); } JmxAppInstance appInstance = JmxAppInstance.findAppInstanceByAppServerAndContextName(appServer, contextName); if(appInstance == null){ appInstance = new JmxAppInstance(); appInstance.setName(contextName); appInstance.setAppServer(appServer); appInstance.persist(); } try{ AppInstanceSnap snap = monitorService.getLatestSnap(appInstance); response.setMessage("AppInstanceSnap obtained."); response.setSuccess(true); response.setTotal(1L); response.setData(snap); returnStatus = HttpStatus.OK; }catch(Exception e){ response.setMessage(e.getMessage()); response.setSuccess(false); response.setTotal(0L); returnStatus = HttpStatus.INTERNAL_SERVER_ERROR; } return new ResponseEntity<String>(new JSONSerializer().exclude("*.class").transform(new DateTransformer("MM/dd/yy-HH:mm:ss"), Date.class).serialize(response), returnStatus); } */ @RequestMapping(value = "/apachesnap", method = RequestMethod.GET) public ResponseEntity<String> getApacheSnap(@RequestParam("ip") String ip, @RequestParam("httpPort") String httpPort) { JsonObjectResponse response = new JsonObjectResponse(); HttpStatus returnStatus; try { ApacheSnap snap = takeApacheSnap(ip, httpPort); snap.setStatus("STARTED"); response.setMessage("AppInstanceSnap obtained."); response.setSuccess(true); response.setTotal(1L); response.setData(snap); returnStatus = HttpStatus.OK; } catch (Exception e) { response.setMessage(e.getMessage()); response.setSuccess(false); response.setTotal(0L); returnStatus = HttpStatus.INTERNAL_SERVER_ERROR; } return new ResponseEntity<String>( new JSONSerializer() .exclude("*.class") .transform(new DateTransformer("MM/dd/yy-HH:mm:ss"), Date.class).serialize(response), returnStatus); } public ApacheSnap takeApacheSnap(String ip, String port) throws IOException { ApacheSnap snap = new ApacheSnap(); String[] autoStatuses = getLinesFromStatus(ip, port,1, 8).split("\n"); snap.setTotalAccessCount(Integer .valueOf(findNumericValue(autoStatuses[0]))); snap.setTotalKBytes(Long.valueOf(findNumericValue(autoStatuses[1]))); snap.setUptime(Long.valueOf(findNumericValue(autoStatuses[2]))); snap.setReadableUptime(TimeUtils.secondToShortDHMS(snap.getUptime())); snap.setReqPerSec(Double.valueOf(findNumericValue(autoStatuses[3]))); snap.setBytesPerSec(Double.valueOf(findNumericValue(autoStatuses[4]))); snap.setBytesPerReq(Double.valueOf(findNumericValue(autoStatuses[5]))); snap.setBusyWorkerCount(Integer .valueOf(findNumericValue(autoStatuses[6]))); snap.setIdleWorkerCount(Integer .valueOf(findNumericValue(autoStatuses[7]))); return snap; } public String findNumericValue(String sourceString) { Pattern pattern = Pattern.compile("\\d*\\.*\\d+$"); Matcher matcher = pattern.matcher(sourceString); if (matcher.find()) { String value = matcher.group(0); if (value.startsWith(".")) value = "0" + value; return value; } else return null; } /** * Get the lineNum th line from server-status * * @param lineNum * (start from 1) * @return */ public String getLineFromStatus(String ip, String httpPort, int lineNum, boolean auto) throws IOException { HttpClient httpclient = new DefaultHttpClient(); StringBuilder sb = new StringBuilder(); sb.append("http://").append(ip).append(":").append(httpPort) .append("/server-status"); if (auto) sb.append("?auto"); final String statusUrl = sb.toString(); HttpGet httpget = new HttpGet(statusUrl); HttpResponse response; try { response = httpclient.execute(httpget); HttpEntity entity = response.getEntity(); String returnLine = null; // If the response does not enclose an entity, there is no need // to worry about connection release if (entity != null) { InputStream instream = entity.getContent(); try { BufferedReader reader = new BufferedReader( new InputStreamReader(instream)); // do something useful with the response // Skip the first 6 lines of server_status for (int i = 1; i < lineNum; i++) { reader.readLine(); } returnLine = reader.readLine(); } catch (IOException ex) { // In case of an IOException the connection will be released // back to the connection manager automatically throw ex; } catch (RuntimeException ex) { // In case of an unexpected exception you may want to abort // the HTTP request in order to shut down the underlying // connection and release it back to the connection manager. httpget.abort(); throw ex; } finally { // Closing the input stream will trigger connection release instream.close(); } // When HttpClient instance is no longer needed, // shut down the connection manager to ensure // immediate deallocation of all system resources httpclient.getConnectionManager().shutdown(); } return returnLine; } catch (ClientProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); return null; } } /** * Get the lineNum th line from server-status * * @param lineNum * (start from 1) * @return */ public String getLinesFromStatus(String ip, String httpPort,int startLineNum, int endLineNum) throws IOException { HttpClient httpclient = new DefaultHttpClient(); final String statusUrl = "http://" + ip + ":" + httpPort + "/server-status?auto"; HttpGet httpget = new HttpGet(statusUrl); HttpResponse response; try { response = httpclient.execute(httpget); HttpEntity entity = response.getEntity(); String returnLine = null; // If the response does not enclose an entity, there is no need // to worry about connection release if (entity != null) { InputStream instream = entity.getContent(); try { BufferedReader reader = new BufferedReader( new InputStreamReader(instream)); // do something useful with the response // Skip the first 6 lines of server_status for (int i = 1; i < startLineNum; i++) { reader.readLine(); } StringBuilder sb = new StringBuilder(); for (int i = 0; i < endLineNum - startLineNum + 1; i++) { sb.append(reader.readLine() + "\n"); } returnLine = sb.toString(); } catch (IOException ex) { // In case of an IOException the connection will be released // back to the connection manager automatically throw ex; } catch (RuntimeException ex) { // In case of an unexpected exception you may want to abort // the HTTP request in order to shut down the underlying // connection and release it back to the connection manager. httpget.abort(); throw ex; } finally { // Closing the input stream will trigger connection release instream.close(); } // When HttpClient instance is no longer needed, // shut down the connection manager to ensure // immediate deallocation of all system resources httpclient.getConnectionManager().shutdown(); } return returnLine; } catch (ClientProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); return null; } } /* @RequestMapping(value = "/control", method = RequestMethod.GET) public ResponseEntity<String> control(@RequestParam("ip") String ip, @RequestParam("jmxPort") String jmxPort, @RequestParam("contextName") String contextName, @RequestParam("operation") String operation) { JsonObjectResponse response = new JsonObjectResponse(); HttpStatus returnStatus; JmxAppServer appServer = JmxAppServer.findJmxAppServerByIpAndJmxPort(ip, jmxPort); if(appServer == null){ appServer = new JmxAppServer(); appServer.setIp(ip); appServer.setJmxPort(jmxPort); try { appServer.init(); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } appServer.persist(); } JmxAppInstance appInstance = JmxAppInstance.findAppInstanceByAppServerAndContextName(appServer, contextName); if(appInstance == null){ appInstance = new JmxAppInstance(); appInstance.setName(contextName); appInstance.setAppServer(appServer); appInstance.persist(); } try{ monitorService.controlAppInstance(appInstance, operation); response.setMessage("Operation performed."); response.setSuccess(true); response.setTotal(1L); returnStatus = HttpStatus.OK; }catch(Exception e){ response.setMessage(e.getMessage()); response.setSuccess(false); response.setTotal(0L); returnStatus = HttpStatus.INTERNAL_SERVER_ERROR; } return new ResponseEntity<String>(new JSONSerializer().exclude("*.class").transform(new DateTransformer("MM/dd/yy-HH:mm:ss"), Date.class).serialize(response), returnStatus); } */ @RequestMapping(method = RequestMethod.POST, value = "{id}") public void post(@PathVariable Long id, ModelMap modelMap, HttpServletRequest request, HttpServletResponse response) { } @RequestMapping public String index() { return "monitor/index"; } }
/** */ package iso20022; import java.lang.String; import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EEnum; import org.eclipse.emf.ecore.EOperation; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.EReference; /** * <!-- begin-user-doc --> * The <b>Package</b> for the model. * It contains accessors for the meta objects to represent * <ul> * <li>each class,</li> * <li>each feature of each class,</li> * <li>each operation of each class,</li> * <li>each enum,</li> * <li>and each data type</li> * </ul> * <!-- end-user-doc --> * @see iso20022.Iso20022Factory * @model kind="package" * annotation="urn:iso:std:iso:20022:2013:ecore:extension basis='IMPLEMENTATION_CONSTRAINTS' description='#1. namespace uri is urn:iso:std:iso:20022:2013:ecore \r\n#2. ISO20022 meta classes are grouped under a single package. \r\n#3. In the Meta Model, eAttributes are typed with specific EMF DataTypes (EBoolean, EString,...) Those EMF DataTypes are mapped to XSD DataTypes as described in #TODOINSERT REF TO EMF BOOK \r\n#4. All ISO20022 meta classes extend the abstract meta class ModelEntity that conveys versioning information and the ObjectIdentifier'" * @generated */ public interface Iso20022Package extends EPackage { /** * The package name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNAME = "iso20022"; /** * The package namespace URI. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_URI = "urn:iso:std:iso:20022:2013:ecore"; /** * The package namespace name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String eNS_PREFIX = "iso20022"; /** * The singleton instance of the package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ Iso20022Package eINSTANCE = iso20022.impl.Iso20022PackageImpl.init(); /** * The meta object id for the '{@link iso20022.impl.ModelEntityImpl <em>Model Entity</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ModelEntityImpl * @see iso20022.impl.Iso20022PackageImpl#getModelEntity() * @generated */ int MODEL_ENTITY = 1; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MODEL_ENTITY__NEXT_VERSIONS = 0; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MODEL_ENTITY__PREVIOUS_VERSION = 1; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MODEL_ENTITY__OBJECT_IDENTIFIER = 2; /** * The number of structural features of the '<em>Model Entity</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MODEL_ENTITY_FEATURE_COUNT = 3; /** * The number of operations of the '<em>Model Entity</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MODEL_ENTITY_OPERATION_COUNT = 0; /** * The meta object id for the '{@link iso20022.impl.AddressImpl <em>Address</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.AddressImpl * @see iso20022.impl.Iso20022PackageImpl#getAddress() * @generated */ int ADDRESS = 0; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ADDRESS__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ADDRESS__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ADDRESS__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Broad Cast List</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ADDRESS__BROAD_CAST_LIST = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Endpoint</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ADDRESS__ENDPOINT = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Address</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ADDRESS_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Address</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ADDRESS_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BroadcastListImpl <em>Broadcast List</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BroadcastListImpl * @see iso20022.impl.Iso20022PackageImpl#getBroadcastList() * @generated */ int BROADCAST_LIST = 2; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BROADCAST_LIST__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BROADCAST_LIST__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BROADCAST_LIST__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Address</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BROADCAST_LIST__ADDRESS = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Broadcast List</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BROADCAST_LIST_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of operations of the '<em>Broadcast List</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BROADCAST_LIST_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessagingEndpointImpl <em>Messaging Endpoint</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessagingEndpointImpl * @see iso20022.impl.Iso20022PackageImpl#getMessagingEndpoint() * @generated */ int MESSAGING_ENDPOINT = 3; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Transport System</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT__TRANSPORT_SYSTEM = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Received Message</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT__RECEIVED_MESSAGE = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Sent Message</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT__SENT_MESSAGE = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Location</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT__LOCATION = MODEL_ENTITY_FEATURE_COUNT + 3; /** * The number of structural features of the '<em>Messaging Endpoint</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 4; /** * The number of operations of the '<em>Messaging Endpoint</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGING_ENDPOINT_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageTransportSystemImpl <em>Message Transport System</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageTransportSystemImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageTransportSystem() * @generated */ int MESSAGE_TRANSPORT_SYSTEM = 4; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_SYSTEM__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_SYSTEM__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_SYSTEM__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Endpoint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_SYSTEM__ENDPOINT = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Message Transport System</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_SYSTEM_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of operations of the '<em>Message Transport System</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_SYSTEM_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.TransportMessageImpl <em>Transport Message</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.TransportMessageImpl * @see iso20022.impl.Iso20022PackageImpl#getTransportMessage() * @generated */ int TRANSPORT_MESSAGE = 5; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Sender</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE__SENDER = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Message Instance</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE__MESSAGE_INSTANCE = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Receiver</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE__RECEIVER = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of structural features of the '<em>Transport Message</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 3; /** * The operation id for the '<em>Same Message Transport System</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE___SAME_MESSAGE_TRANSPORT_SYSTEM__MAP_DIAGNOSTICCHAIN = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Transport Message</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TRANSPORT_MESSAGE_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.MessageInstanceImpl <em>Message Instance</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageInstanceImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageInstance() * @generated */ int MESSAGE_INSTANCE = 6; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_INSTANCE__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_INSTANCE__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_INSTANCE__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Specification</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_INSTANCE__SPECIFICATION = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Transport Message</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_INSTANCE__TRANSPORT_MESSAGE = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Message Instance</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_INSTANCE_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Message Instance</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_INSTANCE_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.RepositoryConceptImpl <em>Repository Concept</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.RepositoryConceptImpl * @see iso20022.impl.Iso20022PackageImpl#getRepositoryConcept() * @generated */ int REPOSITORY_CONCEPT = 9; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__NAME = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__DEFINITION = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__SEMANTIC_MARKUP = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__DOCLET = MODEL_ENTITY_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__EXAMPLE = MODEL_ENTITY_FEATURE_COUNT + 4; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__CONSTRAINT = MODEL_ENTITY_FEATURE_COUNT + 5; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__REGISTRATION_STATUS = MODEL_ENTITY_FEATURE_COUNT + 6; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT__REMOVAL_DATE = MODEL_ENTITY_FEATURE_COUNT + 7; /** * The number of structural features of the '<em>Repository Concept</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 8; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MODEL_ENTITY_OPERATION_COUNT + 1; /** * The number of operations of the '<em>Repository Concept</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_CONCEPT_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 2; /** * The meta object id for the '{@link iso20022.impl.TopLevelCatalogueEntryImpl <em>Top Level Catalogue Entry</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.TopLevelCatalogueEntryImpl * @see iso20022.impl.Iso20022PackageImpl#getTopLevelCatalogueEntry() * @generated */ int TOP_LEVEL_CATALOGUE_ENTRY = 8; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Top Level Catalogue Entry</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Top Level Catalogue Entry</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.SyntaxMessageSchemeImpl <em>Syntax Message Scheme</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.SyntaxMessageSchemeImpl * @see iso20022.impl.Iso20022PackageImpl#getSyntaxMessageScheme() * @generated */ int SYNTAX_MESSAGE_SCHEME = 7; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The feature id for the '<em><b>Message Definition Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME__MESSAGE_DEFINITION_TRACE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Syntax Message Scheme</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Syntax Message Scheme</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_MESSAGE_SCHEME_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.SemanticMarkupImpl <em>Semantic Markup</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.SemanticMarkupImpl * @see iso20022.impl.Iso20022PackageImpl#getSemanticMarkup() * @generated */ int SEMANTIC_MARKUP = 10; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Type</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP__TYPE = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Elements</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP__ELEMENTS = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Semantic Markup</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Semantic Markup</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.SemanticMarkupElementImpl <em>Semantic Markup Element</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.SemanticMarkupElementImpl * @see iso20022.impl.Iso20022PackageImpl#getSemanticMarkupElement() * @generated */ int SEMANTIC_MARKUP_ELEMENT = 11; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_ELEMENT__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_ELEMENT__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_ELEMENT__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_ELEMENT__NAME = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_ELEMENT__VALUE = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Semantic Markup Element</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_ELEMENT_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Semantic Markup Element</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEMANTIC_MARKUP_ELEMENT_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.DocletImpl <em>Doclet</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.DocletImpl * @see iso20022.impl.Iso20022PackageImpl#getDoclet() * @generated */ int DOCLET = 12; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DOCLET__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DOCLET__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DOCLET__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Type</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DOCLET__TYPE = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Content</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DOCLET__CONTENT = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Doclet</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DOCLET_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Doclet</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DOCLET_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ConstraintImpl <em>Constraint</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ConstraintImpl * @see iso20022.impl.Iso20022PackageImpl#getConstraint() * @generated */ int CONSTRAINT = 13; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Expression</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__EXPRESSION = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Expression Language</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__EXPRESSION_LANGUAGE = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Owner</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT__OWNER = REPOSITORY_CONCEPT_FEATURE_COUNT + 2; /** * The number of structural features of the '<em>Constraint</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 3; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Constraint</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRAINT_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BusinessProcessCatalogueImpl <em>Business Process Catalogue</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessProcessCatalogueImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessProcessCatalogue() * @generated */ int BUSINESS_PROCESS_CATALOGUE = 14; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_CATALOGUE__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_CATALOGUE__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_CATALOGUE__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Repository</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_CATALOGUE__REPOSITORY = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Top Level Catalogue Entry</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_CATALOGUE__TOP_LEVEL_CATALOGUE_ENTRY = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Business Process Catalogue</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_CATALOGUE_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The operation id for the '<em>Entries Have Unique Name</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_CATALOGUE___ENTRIES_HAVE_UNIQUE_NAME__MAP_DIAGNOSTICCHAIN = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Business Process Catalogue</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_CATALOGUE_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.RepositoryImpl <em>Repository</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.RepositoryImpl * @see iso20022.impl.Iso20022PackageImpl#getRepository() * @generated */ int REPOSITORY = 15; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Data Dictionary</b></em>' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY__DATA_DICTIONARY = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY__BUSINESS_PROCESS_CATALOGUE = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Repository</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Repository</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.DataDictionaryImpl <em>Data Dictionary</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.DataDictionaryImpl * @see iso20022.impl.Iso20022PackageImpl#getDataDictionary() * @generated */ int DATA_DICTIONARY = 16; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_DICTIONARY__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_DICTIONARY__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_DICTIONARY__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Top Level Dictionary Entry</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_DICTIONARY__TOP_LEVEL_DICTIONARY_ENTRY = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Repository</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_DICTIONARY__REPOSITORY = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Data Dictionary</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_DICTIONARY_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The operation id for the '<em>Entries Have Unique Name</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_DICTIONARY___ENTRIES_HAVE_UNIQUE_NAME__MAP_DIAGNOSTICCHAIN = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Data Dictionary</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_DICTIONARY_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.TopLevelDictionaryEntryImpl <em>Top Level Dictionary Entry</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.TopLevelDictionaryEntryImpl * @see iso20022.impl.Iso20022PackageImpl#getTopLevelDictionaryEntry() * @generated */ int TOP_LEVEL_DICTIONARY_ENTRY = 17; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY__DATA_DICTIONARY = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Top Level Dictionary Entry</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Top Level Dictionary Entry</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TOP_LEVEL_DICTIONARY_ENTRY_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.RepositoryTypeImpl <em>Repository Type</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.RepositoryTypeImpl * @see iso20022.impl.Iso20022PackageImpl#getRepositoryType() * @generated */ int REPOSITORY_TYPE = 19; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The number of structural features of the '<em>Repository Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Repository Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int REPOSITORY_TYPE_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageDefinitionImpl <em>Message Definition</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageDefinitionImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageDefinition() * @generated */ int MESSAGE_DEFINITION = 18; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__NEXT_VERSIONS = REPOSITORY_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__PREVIOUS_VERSION = REPOSITORY_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__OBJECT_IDENTIFIER = REPOSITORY_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__NAME = REPOSITORY_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__DEFINITION = REPOSITORY_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__SEMANTIC_MARKUP = REPOSITORY_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__DOCLET = REPOSITORY_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__EXAMPLE = REPOSITORY_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__CONSTRAINT = REPOSITORY_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__REGISTRATION_STATUS = REPOSITORY_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__REMOVAL_DATE = REPOSITORY_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Message Set</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__MESSAGE_SET = REPOSITORY_TYPE_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Xml Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__XML_NAME = REPOSITORY_TYPE_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Xml Tag</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__XML_TAG = REPOSITORY_TYPE_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Business Area</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__BUSINESS_AREA = REPOSITORY_TYPE_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Xors</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__XORS = REPOSITORY_TYPE_FEATURE_COUNT + 4; /** * The feature id for the '<em><b>Root Element</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__ROOT_ELEMENT = REPOSITORY_TYPE_FEATURE_COUNT + 5; /** * The feature id for the '<em><b>Message Building Block</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__MESSAGE_BUILDING_BLOCK = REPOSITORY_TYPE_FEATURE_COUNT + 6; /** * The feature id for the '<em><b>Choreography</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__CHOREOGRAPHY = REPOSITORY_TYPE_FEATURE_COUNT + 7; /** * The feature id for the '<em><b>Trace</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__TRACE = REPOSITORY_TYPE_FEATURE_COUNT + 8; /** * The feature id for the '<em><b>Message Definition Identifier</b></em>' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__MESSAGE_DEFINITION_IDENTIFIER = REPOSITORY_TYPE_FEATURE_COUNT + 9; /** * The feature id for the '<em><b>Derivation</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION__DERIVATION = REPOSITORY_TYPE_FEATURE_COUNT + 10; /** * The number of structural features of the '<em>Message Definition</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_FEATURE_COUNT = REPOSITORY_TYPE_FEATURE_COUNT + 11; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Business Area Name Match</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION___BUSINESS_AREA_NAME_MATCH__MAP_DIAGNOSTICCHAIN = REPOSITORY_TYPE_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Message Definition</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_OPERATION_COUNT = REPOSITORY_TYPE_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.MessageSetImpl <em>Message Set</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageSetImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageSet() * @generated */ int MESSAGE_SET = 20; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The feature id for the '<em><b>Generated Syntax</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__GENERATED_SYNTAX = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Valid Encoding</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__VALID_ENCODING = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Message Definition</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET__MESSAGE_DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 2; /** * The number of structural features of the '<em>Message Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 3; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Generated Syntax Derivation</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET___GENERATED_SYNTAX_DERIVATION__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Message Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_SET_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.SyntaxImpl <em>Syntax</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.SyntaxImpl * @see iso20022.impl.Iso20022PackageImpl#getSyntax() * @generated */ int SYNTAX = 21; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Possible Encodings</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX__POSSIBLE_ENCODINGS = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Generated For</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX__GENERATED_FOR = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Syntax</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The operation id for the '<em>Generated For Derivation</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX___GENERATED_FOR_DERIVATION__MAP_DIAGNOSTICCHAIN = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Syntax</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SYNTAX_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.EncodingImpl <em>Encoding</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.EncodingImpl * @see iso20022.impl.Iso20022PackageImpl#getEncoding() * @generated */ int ENCODING = 22; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ENCODING__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ENCODING__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ENCODING__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Message Set</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ENCODING__MESSAGE_SET = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Syntax</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ENCODING__SYNTAX = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Encoding</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ENCODING_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Encoding</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ENCODING_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BusinessAreaImpl <em>Business Area</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessAreaImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessArea() * @generated */ int BUSINESS_AREA = 23; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The feature id for the '<em><b>Code</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__CODE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Message Definition</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA__MESSAGE_DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Business Area</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Business Area</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_AREA_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.XorImpl <em>Xor</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.XorImpl * @see iso20022.impl.Iso20022PackageImpl#getXor() * @generated */ int XOR = 24; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Impacted Elements</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__IMPACTED_ELEMENTS = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Message Component</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__MESSAGE_COMPONENT = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Impacted Message Building Blocks</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__IMPACTED_MESSAGE_BUILDING_BLOCKS = REPOSITORY_CONCEPT_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Message Definition</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR__MESSAGE_DEFINITION = REPOSITORY_CONCEPT_FEATURE_COUNT + 3; /** * The number of structural features of the '<em>Xor</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 4; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Xor</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int XOR_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ConstructImpl <em>Construct</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ConstructImpl * @see iso20022.impl.Iso20022PackageImpl#getConstruct() * @generated */ int CONSTRUCT = 27; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__MAX_OCCURS = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__MIN_OCCURS = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT__MEMBER_TYPE = REPOSITORY_CONCEPT_FEATURE_COUNT + 2; /** * The number of structural features of the '<em>Construct</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 3; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Construct</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONSTRUCT_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageConstructImpl <em>Message Construct</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageConstructImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageConstruct() * @generated */ int MESSAGE_CONSTRUCT = 26; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__NEXT_VERSIONS = CONSTRUCT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__PREVIOUS_VERSION = CONSTRUCT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__OBJECT_IDENTIFIER = CONSTRUCT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__NAME = CONSTRUCT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__DEFINITION = CONSTRUCT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__SEMANTIC_MARKUP = CONSTRUCT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__DOCLET = CONSTRUCT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__EXAMPLE = CONSTRUCT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__CONSTRAINT = CONSTRUCT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__REGISTRATION_STATUS = CONSTRUCT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__REMOVAL_DATE = CONSTRUCT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__MAX_OCCURS = CONSTRUCT__MAX_OCCURS; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__MIN_OCCURS = CONSTRUCT__MIN_OCCURS; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__MEMBER_TYPE = CONSTRUCT__MEMBER_TYPE; /** * The feature id for the '<em><b>Xml Tag</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__XML_TAG = CONSTRUCT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Xml Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT__XML_MEMBER_TYPE = CONSTRUCT_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Message Construct</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT_FEATURE_COUNT = CONSTRUCT_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = CONSTRUCT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = CONSTRUCT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Message Construct</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONSTRUCT_OPERATION_COUNT = CONSTRUCT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageElementImpl <em>Message Element</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageElementImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageElement() * @generated */ int MESSAGE_ELEMENT = 25; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__NEXT_VERSIONS = MESSAGE_CONSTRUCT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__PREVIOUS_VERSION = MESSAGE_CONSTRUCT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__OBJECT_IDENTIFIER = MESSAGE_CONSTRUCT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__NAME = MESSAGE_CONSTRUCT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__DEFINITION = MESSAGE_CONSTRUCT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__SEMANTIC_MARKUP = MESSAGE_CONSTRUCT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__DOCLET = MESSAGE_CONSTRUCT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__EXAMPLE = MESSAGE_CONSTRUCT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__CONSTRAINT = MESSAGE_CONSTRUCT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__REGISTRATION_STATUS = MESSAGE_CONSTRUCT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__REMOVAL_DATE = MESSAGE_CONSTRUCT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__MAX_OCCURS = MESSAGE_CONSTRUCT__MAX_OCCURS; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__MIN_OCCURS = MESSAGE_CONSTRUCT__MIN_OCCURS; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__MEMBER_TYPE = MESSAGE_CONSTRUCT__MEMBER_TYPE; /** * The feature id for the '<em><b>Xml Tag</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__XML_TAG = MESSAGE_CONSTRUCT__XML_TAG; /** * The feature id for the '<em><b>Xml Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__XML_MEMBER_TYPE = MESSAGE_CONSTRUCT__XML_MEMBER_TYPE; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__IS_TECHNICAL = MESSAGE_CONSTRUCT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Business Component Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__BUSINESS_COMPONENT_TRACE = MESSAGE_CONSTRUCT_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Business Element Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__BUSINESS_ELEMENT_TRACE = MESSAGE_CONSTRUCT_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Component Context</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__COMPONENT_CONTEXT = MESSAGE_CONSTRUCT_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Is Derived</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT__IS_DERIVED = MESSAGE_CONSTRUCT_FEATURE_COUNT + 4; /** * The number of structural features of the '<em>Message Element</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_FEATURE_COUNT = MESSAGE_CONSTRUCT_FEATURE_COUNT + 5; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_CONSTRUCT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_CONSTRUCT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>No More Than One Trace</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT___NO_MORE_THAN_ONE_TRACE__MAP_DIAGNOSTICCHAIN = MESSAGE_CONSTRUCT_OPERATION_COUNT + 0; /** * The operation id for the '<em>Cardinality Alignment</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT___CARDINALITY_ALIGNMENT__MAP_DIAGNOSTICCHAIN = MESSAGE_CONSTRUCT_OPERATION_COUNT + 1; /** * The number of operations of the '<em>Message Element</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_OPERATION_COUNT = MESSAGE_CONSTRUCT_OPERATION_COUNT + 2; /** * The meta object id for the '{@link iso20022.impl.MultiplicityEntityImpl <em>Multiplicity Entity</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MultiplicityEntityImpl * @see iso20022.impl.Iso20022PackageImpl#getMultiplicityEntity() * @generated */ int MULTIPLICITY_ENTITY = 28; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MULTIPLICITY_ENTITY__MAX_OCCURS = 0; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MULTIPLICITY_ENTITY__MIN_OCCURS = 1; /** * The number of structural features of the '<em>Multiplicity Entity</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MULTIPLICITY_ENTITY_FEATURE_COUNT = 2; /** * The number of operations of the '<em>Multiplicity Entity</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MULTIPLICITY_ENTITY_OPERATION_COUNT = 0; /** * The meta object id for the '{@link iso20022.impl.LogicalTypeImpl <em>Logical Type</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.LogicalTypeImpl * @see iso20022.impl.Iso20022PackageImpl#getLogicalType() * @generated */ int LOGICAL_TYPE = 29; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__NEXT_VERSIONS = REPOSITORY_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__PREVIOUS_VERSION = REPOSITORY_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__OBJECT_IDENTIFIER = REPOSITORY_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__NAME = REPOSITORY_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__DEFINITION = REPOSITORY_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__SEMANTIC_MARKUP = REPOSITORY_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__DOCLET = REPOSITORY_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__EXAMPLE = REPOSITORY_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__CONSTRAINT = REPOSITORY_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__REGISTRATION_STATUS = REPOSITORY_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE__REMOVAL_DATE = REPOSITORY_TYPE__REMOVAL_DATE; /** * The number of structural features of the '<em>Logical Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE_FEATURE_COUNT = REPOSITORY_TYPE_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Logical Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int LOGICAL_TYPE_OPERATION_COUNT = REPOSITORY_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageConceptImpl <em>Message Concept</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageConceptImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageConcept() * @generated */ int MESSAGE_CONCEPT = 30; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONCEPT__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONCEPT__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONCEPT__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The number of structural features of the '<em>Message Concept</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONCEPT_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The number of operations of the '<em>Message Concept</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CONCEPT_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BusinessComponentImpl <em>Business Component</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessComponentImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessComponent() * @generated */ int BUSINESS_COMPONENT = 31; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__NEXT_VERSIONS = TOP_LEVEL_DICTIONARY_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__PREVIOUS_VERSION = TOP_LEVEL_DICTIONARY_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__OBJECT_IDENTIFIER = TOP_LEVEL_DICTIONARY_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__NAME = TOP_LEVEL_DICTIONARY_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__DEFINITION = TOP_LEVEL_DICTIONARY_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__SEMANTIC_MARKUP = TOP_LEVEL_DICTIONARY_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__DOCLET = TOP_LEVEL_DICTIONARY_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__EXAMPLE = TOP_LEVEL_DICTIONARY_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__CONSTRAINT = TOP_LEVEL_DICTIONARY_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__REGISTRATION_STATUS = TOP_LEVEL_DICTIONARY_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__REMOVAL_DATE = TOP_LEVEL_DICTIONARY_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__DATA_DICTIONARY = TOP_LEVEL_DICTIONARY_ENTRY__DATA_DICTIONARY; /** * The feature id for the '<em><b>Sub Type</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__SUB_TYPE = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Super Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__SUPER_TYPE = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Element</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__ELEMENT = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Derivation Component</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__DERIVATION_COMPONENT = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Association Domain</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__ASSOCIATION_DOMAIN = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 4; /** * The feature id for the '<em><b>Derivation Element</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT__DERIVATION_ELEMENT = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 5; /** * The number of structural features of the '<em>Business Component</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT_FEATURE_COUNT = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 6; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Business Elements Have Unique Names</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT___BUSINESS_ELEMENTS_HAVE_UNIQUE_NAMES__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Business Component</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_COMPONENT_OPERATION_COUNT = TOP_LEVEL_DICTIONARY_ENTRY_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.BusinessElementTypeImpl <em>Business Element Type</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessElementTypeImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessElementType() * @generated */ int BUSINESS_ELEMENT_TYPE = 32; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__NEXT_VERSIONS = REPOSITORY_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__PREVIOUS_VERSION = REPOSITORY_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__OBJECT_IDENTIFIER = REPOSITORY_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__NAME = REPOSITORY_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__DEFINITION = REPOSITORY_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__SEMANTIC_MARKUP = REPOSITORY_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__DOCLET = REPOSITORY_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__EXAMPLE = REPOSITORY_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__CONSTRAINT = REPOSITORY_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__REGISTRATION_STATUS = REPOSITORY_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE__REMOVAL_DATE = REPOSITORY_TYPE__REMOVAL_DATE; /** * The number of structural features of the '<em>Business Element Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE_FEATURE_COUNT = REPOSITORY_TYPE_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Business Element Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_TYPE_OPERATION_COUNT = REPOSITORY_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BusinessConceptImpl <em>Business Concept</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessConceptImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessConcept() * @generated */ int BUSINESS_CONCEPT = 33; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_CONCEPT__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_CONCEPT__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_CONCEPT__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The number of structural features of the '<em>Business Concept</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_CONCEPT_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The number of operations of the '<em>Business Concept</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_CONCEPT_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BusinessElementImpl <em>Business Element</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessElementImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessElement() * @generated */ int BUSINESS_ELEMENT = 34; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__NEXT_VERSIONS = CONSTRUCT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__PREVIOUS_VERSION = CONSTRUCT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__OBJECT_IDENTIFIER = CONSTRUCT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__NAME = CONSTRUCT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__DEFINITION = CONSTRUCT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__SEMANTIC_MARKUP = CONSTRUCT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__DOCLET = CONSTRUCT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__EXAMPLE = CONSTRUCT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__CONSTRAINT = CONSTRUCT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__REGISTRATION_STATUS = CONSTRUCT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__REMOVAL_DATE = CONSTRUCT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__MAX_OCCURS = CONSTRUCT__MAX_OCCURS; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__MIN_OCCURS = CONSTRUCT__MIN_OCCURS; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__MEMBER_TYPE = CONSTRUCT__MEMBER_TYPE; /** * The feature id for the '<em><b>Is Derived</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__IS_DERIVED = CONSTRUCT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Derivation</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__DERIVATION = CONSTRUCT_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Business Element Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__BUSINESS_ELEMENT_TYPE = CONSTRUCT_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Element Context</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT__ELEMENT_CONTEXT = CONSTRUCT_FEATURE_COUNT + 3; /** * The number of structural features of the '<em>Business Element</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_FEATURE_COUNT = CONSTRUCT_FEATURE_COUNT + 4; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = CONSTRUCT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = CONSTRUCT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Business Element</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ELEMENT_OPERATION_COUNT = CONSTRUCT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageComponentTypeImpl <em>Message Component Type</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageComponentTypeImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageComponentType() * @generated */ int MESSAGE_COMPONENT_TYPE = 35; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__NEXT_VERSIONS = TOP_LEVEL_DICTIONARY_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__PREVIOUS_VERSION = TOP_LEVEL_DICTIONARY_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__OBJECT_IDENTIFIER = TOP_LEVEL_DICTIONARY_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__NAME = TOP_LEVEL_DICTIONARY_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__DEFINITION = TOP_LEVEL_DICTIONARY_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__SEMANTIC_MARKUP = TOP_LEVEL_DICTIONARY_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__DOCLET = TOP_LEVEL_DICTIONARY_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__EXAMPLE = TOP_LEVEL_DICTIONARY_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__CONSTRAINT = TOP_LEVEL_DICTIONARY_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__REGISTRATION_STATUS = TOP_LEVEL_DICTIONARY_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__REMOVAL_DATE = TOP_LEVEL_DICTIONARY_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__DATA_DICTIONARY = TOP_LEVEL_DICTIONARY_ENTRY__DATA_DICTIONARY; /** * The feature id for the '<em><b>Message Building Block</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__MESSAGE_BUILDING_BLOCK = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__IS_TECHNICAL = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE__TRACE = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 2; /** * The number of structural features of the '<em>Message Component Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE_FEATURE_COUNT = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 3; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Message Component Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_TYPE_OPERATION_COUNT = TOP_LEVEL_DICTIONARY_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageBuildingBlockImpl <em>Message Building Block</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageBuildingBlockImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageBuildingBlock() * @generated */ int MESSAGE_BUILDING_BLOCK = 36; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__NEXT_VERSIONS = MESSAGE_CONSTRUCT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__PREVIOUS_VERSION = MESSAGE_CONSTRUCT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__OBJECT_IDENTIFIER = MESSAGE_CONSTRUCT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__NAME = MESSAGE_CONSTRUCT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__DEFINITION = MESSAGE_CONSTRUCT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__SEMANTIC_MARKUP = MESSAGE_CONSTRUCT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__DOCLET = MESSAGE_CONSTRUCT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__EXAMPLE = MESSAGE_CONSTRUCT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__CONSTRAINT = MESSAGE_CONSTRUCT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__REGISTRATION_STATUS = MESSAGE_CONSTRUCT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__REMOVAL_DATE = MESSAGE_CONSTRUCT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__MAX_OCCURS = MESSAGE_CONSTRUCT__MAX_OCCURS; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__MIN_OCCURS = MESSAGE_CONSTRUCT__MIN_OCCURS; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__MEMBER_TYPE = MESSAGE_CONSTRUCT__MEMBER_TYPE; /** * The feature id for the '<em><b>Xml Tag</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__XML_TAG = MESSAGE_CONSTRUCT__XML_TAG; /** * The feature id for the '<em><b>Xml Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__XML_MEMBER_TYPE = MESSAGE_CONSTRUCT__XML_MEMBER_TYPE; /** * The feature id for the '<em><b>Simple Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__SIMPLE_TYPE = MESSAGE_CONSTRUCT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Complex Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK__COMPLEX_TYPE = MESSAGE_CONSTRUCT_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Message Building Block</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK_FEATURE_COUNT = MESSAGE_CONSTRUCT_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_CONSTRUCT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_CONSTRUCT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Message Building Block Has Exactly One Type</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK___MESSAGE_BUILDING_BLOCK_HAS_EXACTLY_ONE_TYPE__MAP_DIAGNOSTICCHAIN = MESSAGE_CONSTRUCT_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Message Building Block</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_BUILDING_BLOCK_OPERATION_COUNT = MESSAGE_CONSTRUCT_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.DataTypeImpl <em>Data Type</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.DataTypeImpl * @see iso20022.impl.Iso20022PackageImpl#getDataType() * @generated */ int DATA_TYPE = 37; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__NEXT_VERSIONS = TOP_LEVEL_DICTIONARY_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__PREVIOUS_VERSION = TOP_LEVEL_DICTIONARY_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__OBJECT_IDENTIFIER = TOP_LEVEL_DICTIONARY_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__NAME = TOP_LEVEL_DICTIONARY_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__DEFINITION = TOP_LEVEL_DICTIONARY_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__SEMANTIC_MARKUP = TOP_LEVEL_DICTIONARY_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__DOCLET = TOP_LEVEL_DICTIONARY_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__EXAMPLE = TOP_LEVEL_DICTIONARY_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__CONSTRAINT = TOP_LEVEL_DICTIONARY_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__REGISTRATION_STATUS = TOP_LEVEL_DICTIONARY_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__REMOVAL_DATE = TOP_LEVEL_DICTIONARY_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE__DATA_DICTIONARY = TOP_LEVEL_DICTIONARY_ENTRY__DATA_DICTIONARY; /** * The number of structural features of the '<em>Data Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE_FEATURE_COUNT = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Data Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATA_TYPE_OPERATION_COUNT = TOP_LEVEL_DICTIONARY_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BusinessAssociationEndImpl <em>Business Association End</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessAssociationEndImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessAssociationEnd() * @generated */ int BUSINESS_ASSOCIATION_END = 38; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__NEXT_VERSIONS = BUSINESS_ELEMENT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__PREVIOUS_VERSION = BUSINESS_ELEMENT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__OBJECT_IDENTIFIER = BUSINESS_ELEMENT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__NAME = BUSINESS_ELEMENT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__DEFINITION = BUSINESS_ELEMENT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__SEMANTIC_MARKUP = BUSINESS_ELEMENT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__DOCLET = BUSINESS_ELEMENT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__EXAMPLE = BUSINESS_ELEMENT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__CONSTRAINT = BUSINESS_ELEMENT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__REGISTRATION_STATUS = BUSINESS_ELEMENT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__REMOVAL_DATE = BUSINESS_ELEMENT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__MAX_OCCURS = BUSINESS_ELEMENT__MAX_OCCURS; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__MIN_OCCURS = BUSINESS_ELEMENT__MIN_OCCURS; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__MEMBER_TYPE = BUSINESS_ELEMENT__MEMBER_TYPE; /** * The feature id for the '<em><b>Is Derived</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__IS_DERIVED = BUSINESS_ELEMENT__IS_DERIVED; /** * The feature id for the '<em><b>Derivation</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__DERIVATION = BUSINESS_ELEMENT__DERIVATION; /** * The feature id for the '<em><b>Business Element Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__BUSINESS_ELEMENT_TYPE = BUSINESS_ELEMENT__BUSINESS_ELEMENT_TYPE; /** * The feature id for the '<em><b>Element Context</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__ELEMENT_CONTEXT = BUSINESS_ELEMENT__ELEMENT_CONTEXT; /** * The feature id for the '<em><b>Opposite</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__OPPOSITE = BUSINESS_ELEMENT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Aggregation</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__AGGREGATION = BUSINESS_ELEMENT_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END__TYPE = BUSINESS_ELEMENT_FEATURE_COUNT + 2; /** * The number of structural features of the '<em>Business Association End</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END_FEATURE_COUNT = BUSINESS_ELEMENT_FEATURE_COUNT + 3; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = BUSINESS_ELEMENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = BUSINESS_ELEMENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>At Most One Aggregated End</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END___AT_MOST_ONE_AGGREGATED_END__MAP_DIAGNOSTICCHAIN = BUSINESS_ELEMENT_OPERATION_COUNT + 0; /** * The operation id for the '<em>Context Consistent With Type</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END___CONTEXT_CONSISTENT_WITH_TYPE__MAP_DIAGNOSTICCHAIN = BUSINESS_ELEMENT_OPERATION_COUNT + 1; /** * The number of operations of the '<em>Business Association End</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ASSOCIATION_END_OPERATION_COUNT = BUSINESS_ELEMENT_OPERATION_COUNT + 2; /** * The meta object id for the '{@link iso20022.impl.MessageElementContainerImpl <em>Message Element Container</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageElementContainerImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageElementContainer() * @generated */ int MESSAGE_ELEMENT_CONTAINER = 39; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__NEXT_VERSIONS = MESSAGE_COMPONENT_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__PREVIOUS_VERSION = MESSAGE_COMPONENT_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__OBJECT_IDENTIFIER = MESSAGE_COMPONENT_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__NAME = MESSAGE_COMPONENT_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__DEFINITION = MESSAGE_COMPONENT_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__SEMANTIC_MARKUP = MESSAGE_COMPONENT_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__DOCLET = MESSAGE_COMPONENT_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__EXAMPLE = MESSAGE_COMPONENT_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__CONSTRAINT = MESSAGE_COMPONENT_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__REGISTRATION_STATUS = MESSAGE_COMPONENT_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__REMOVAL_DATE = MESSAGE_COMPONENT_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__DATA_DICTIONARY = MESSAGE_COMPONENT_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Message Building Block</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__MESSAGE_BUILDING_BLOCK = MESSAGE_COMPONENT_TYPE__MESSAGE_BUILDING_BLOCK; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__IS_TECHNICAL = MESSAGE_COMPONENT_TYPE__IS_TECHNICAL; /** * The feature id for the '<em><b>Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__TRACE = MESSAGE_COMPONENT_TYPE__TRACE; /** * The feature id for the '<em><b>Message Element</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER__MESSAGE_ELEMENT = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Message Element Container</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER_FEATURE_COUNT = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_COMPONENT_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_COMPONENT_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Message Elements Have Unique Names</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER___MESSAGE_ELEMENTS_HAVE_UNIQUE_NAMES__MAP_DIAGNOSTICCHAIN = MESSAGE_COMPONENT_TYPE_OPERATION_COUNT + 0; /** * The operation id for the '<em>Technical Element</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER___TECHNICAL_ELEMENT__MAP_DIAGNOSTICCHAIN = MESSAGE_COMPONENT_TYPE_OPERATION_COUNT + 1; /** * The number of operations of the '<em>Message Element Container</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ELEMENT_CONTAINER_OPERATION_COUNT = MESSAGE_COMPONENT_TYPE_OPERATION_COUNT + 2; /** * The meta object id for the '{@link iso20022.impl.MessageComponentImpl <em>Message Component</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageComponentImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageComponent() * @generated */ int MESSAGE_COMPONENT = 40; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__NEXT_VERSIONS = MESSAGE_ELEMENT_CONTAINER__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__PREVIOUS_VERSION = MESSAGE_ELEMENT_CONTAINER__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__OBJECT_IDENTIFIER = MESSAGE_ELEMENT_CONTAINER__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__NAME = MESSAGE_ELEMENT_CONTAINER__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__DEFINITION = MESSAGE_ELEMENT_CONTAINER__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__SEMANTIC_MARKUP = MESSAGE_ELEMENT_CONTAINER__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__DOCLET = MESSAGE_ELEMENT_CONTAINER__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__EXAMPLE = MESSAGE_ELEMENT_CONTAINER__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__CONSTRAINT = MESSAGE_ELEMENT_CONTAINER__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__REGISTRATION_STATUS = MESSAGE_ELEMENT_CONTAINER__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__REMOVAL_DATE = MESSAGE_ELEMENT_CONTAINER__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__DATA_DICTIONARY = MESSAGE_ELEMENT_CONTAINER__DATA_DICTIONARY; /** * The feature id for the '<em><b>Message Building Block</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__MESSAGE_BUILDING_BLOCK = MESSAGE_ELEMENT_CONTAINER__MESSAGE_BUILDING_BLOCK; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__IS_TECHNICAL = MESSAGE_ELEMENT_CONTAINER__IS_TECHNICAL; /** * The feature id for the '<em><b>Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__TRACE = MESSAGE_ELEMENT_CONTAINER__TRACE; /** * The feature id for the '<em><b>Message Element</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__MESSAGE_ELEMENT = MESSAGE_ELEMENT_CONTAINER__MESSAGE_ELEMENT; /** * The feature id for the '<em><b>Xors</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT__XORS = MESSAGE_ELEMENT_CONTAINER_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Message Component</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_FEATURE_COUNT = MESSAGE_ELEMENT_CONTAINER_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Message Elements Have Unique Names</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT___MESSAGE_ELEMENTS_HAVE_UNIQUE_NAMES__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER___MESSAGE_ELEMENTS_HAVE_UNIQUE_NAMES__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Technical Element</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT___TECHNICAL_ELEMENT__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER___TECHNICAL_ELEMENT__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Message Component</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_COMPONENT_OPERATION_COUNT = MESSAGE_ELEMENT_CONTAINER_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageChoreographyImpl <em>Message Choreography</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageChoreographyImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageChoreography() * @generated */ int MESSAGE_CHOREOGRAPHY = 41; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The feature id for the '<em><b>Business Transaction Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__BUSINESS_TRANSACTION_TRACE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Message Definition</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY__MESSAGE_DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Message Choreography</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Message Choreography</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_CHOREOGRAPHY_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BusinessTransactionImpl <em>Business Transaction</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessTransactionImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessTransaction() * @generated */ int BUSINESS_TRANSACTION = 42; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The feature id for the '<em><b>Business Process Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__BUSINESS_PROCESS_TRACE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Participant</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__PARTICIPANT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Transmission</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__TRANSMISSION = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Message Transport Mode</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__MESSAGE_TRANSPORT_MODE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Sub Transaction</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__SUB_TRANSACTION = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 4; /** * The feature id for the '<em><b>Parent Transaction</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__PARENT_TRANSACTION = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 5; /** * The feature id for the '<em><b>Trace</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION__TRACE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 6; /** * The number of structural features of the '<em>Business Transaction</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 7; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Message Transmissions Have Unique Names</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION___MESSAGE_TRANSMISSIONS_HAVE_UNIQUE_NAMES__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The operation id for the '<em>Participants Have Unique Names</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION___PARTICIPANTS_HAVE_UNIQUE_NAMES__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 1; /** * The number of operations of the '<em>Business Transaction</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_TRANSACTION_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 2; /** * The meta object id for the '{@link iso20022.impl.BusinessProcessImpl <em>Business Process</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessProcessImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessProcess() * @generated */ int BUSINESS_PROCESS = 43; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The feature id for the '<em><b>Extender</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__EXTENDER = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Extended</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__EXTENDED = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Included</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__INCLUDED = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Includer</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__INCLUDER = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Business Role</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__BUSINESS_ROLE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 4; /** * The feature id for the '<em><b>Business Process Trace</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS__BUSINESS_PROCESS_TRACE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 5; /** * The number of structural features of the '<em>Business Process</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 6; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Business Process</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_PROCESS_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BusinessRoleImpl <em>Business Role</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessRoleImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessRole() * @generated */ int BUSINESS_ROLE = 44; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Role Trace</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__BUSINESS_ROLE_TRACE = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Business Process</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE__BUSINESS_PROCESS = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Business Role</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Business Role</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ROLE_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ParticipantImpl <em>Participant</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ParticipantImpl * @see iso20022.impl.Iso20022PackageImpl#getParticipant() * @generated */ int PARTICIPANT = 45; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__MAX_OCCURS = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__MIN_OCCURS = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Business Transaction</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__BUSINESS_TRANSACTION = REPOSITORY_CONCEPT_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Receives</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__RECEIVES = REPOSITORY_CONCEPT_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Sends</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__SENDS = REPOSITORY_CONCEPT_FEATURE_COUNT + 4; /** * The feature id for the '<em><b>Business Role Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT__BUSINESS_ROLE_TRACE = REPOSITORY_CONCEPT_FEATURE_COUNT + 5; /** * The number of structural features of the '<em>Participant</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 6; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Participant</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int PARTICIPANT_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ReceiveImpl <em>Receive</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ReceiveImpl * @see iso20022.impl.Iso20022PackageImpl#getReceive() * @generated */ int RECEIVE = 46; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RECEIVE__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RECEIVE__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RECEIVE__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Message Transmission</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RECEIVE__MESSAGE_TRANSMISSION = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Receiver</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RECEIVE__RECEIVER = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Receive</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RECEIVE_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Receive</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RECEIVE_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageTransmissionImpl <em>Message Transmission</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageTransmissionImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageTransmission() * @generated */ int MESSAGE_TRANSMISSION = 47; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Transaction</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__BUSINESS_TRANSACTION = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Derivation</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__DERIVATION = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Message Type Description</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__MESSAGE_TYPE_DESCRIPTION = REPOSITORY_CONCEPT_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Send</b></em>' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__SEND = REPOSITORY_CONCEPT_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Receive</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION__RECEIVE = REPOSITORY_CONCEPT_FEATURE_COUNT + 4; /** * The number of structural features of the '<em>Message Transmission</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 5; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Message Transmission</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSMISSION_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.SendImpl <em>Send</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.SendImpl * @see iso20022.impl.Iso20022PackageImpl#getSend() * @generated */ int SEND = 48; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEND__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEND__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEND__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Sender</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEND__SENDER = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Message Transmission</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEND__MESSAGE_TRANSMISSION = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Send</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEND_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The number of operations of the '<em>Send</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SEND_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageTransportModeImpl <em>Message Transport Mode</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageTransportModeImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageTransportMode() * @generated */ int MESSAGE_TRANSPORT_MODE = 49; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The feature id for the '<em><b>Bounded Communication Delay</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__BOUNDED_COMMUNICATION_DELAY = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Maximum Clock Variation</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MAXIMUM_CLOCK_VARIATION = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Maximum Message Size</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MAXIMUM_MESSAGE_SIZE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Message Delivery Window</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MESSAGE_DELIVERY_WINDOW = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Message Sending Window</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MESSAGE_SENDING_WINDOW = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 4; /** * The feature id for the '<em><b>Delivery Assurance</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__DELIVERY_ASSURANCE = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 5; /** * The feature id for the '<em><b>Durability</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__DURABILITY = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 6; /** * The feature id for the '<em><b>Message Casting</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MESSAGE_CASTING = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 7; /** * The feature id for the '<em><b>Message Delivery Order</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MESSAGE_DELIVERY_ORDER = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 8; /** * The feature id for the '<em><b>Message Validation Level</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MESSAGE_VALIDATION_LEVEL = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 9; /** * The feature id for the '<em><b>Message Validation On Off</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MESSAGE_VALIDATION_ON_OFF = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 10; /** * The feature id for the '<em><b>Message Validation Results</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__MESSAGE_VALIDATION_RESULTS = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 11; /** * The feature id for the '<em><b>Receiver Asynchronicity</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__RECEIVER_ASYNCHRONICITY = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 12; /** * The feature id for the '<em><b>Sender Asynchronicity</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__SENDER_ASYNCHRONICITY = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 13; /** * The feature id for the '<em><b>Business Transaction</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE__BUSINESS_TRANSACTION = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 14; /** * The number of structural features of the '<em>Message Transport Mode</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 15; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Message Transport Mode</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_TRANSPORT_MODE_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageDefinitionIdentifierImpl <em>Message Definition Identifier</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageDefinitionIdentifierImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageDefinitionIdentifier() * @generated */ int MESSAGE_DEFINITION_IDENTIFIER = 50; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Business Area</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER__BUSINESS_AREA = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Message Functionality</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER__MESSAGE_FUNCTIONALITY = MODEL_ENTITY_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Flavour</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER__FLAVOUR = MODEL_ENTITY_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Version</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER__VERSION = MODEL_ENTITY_FEATURE_COUNT + 3; /** * The number of structural features of the '<em>Message Definition Identifier</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 4; /** * The number of operations of the '<em>Message Definition Identifier</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_DEFINITION_IDENTIFIER_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ConversationImpl <em>Conversation</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ConversationImpl * @see iso20022.impl.Iso20022PackageImpl#getConversation() * @generated */ int CONVERSATION = 51; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERSATION__NEXT_VERSIONS = MODEL_ENTITY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERSATION__PREVIOUS_VERSION = MODEL_ENTITY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERSATION__OBJECT_IDENTIFIER = MODEL_ENTITY__OBJECT_IDENTIFIER; /** * The number of structural features of the '<em>Conversation</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERSATION_FEATURE_COUNT = MODEL_ENTITY_FEATURE_COUNT + 0; /** * The number of operations of the '<em>Conversation</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERSATION_OPERATION_COUNT = MODEL_ENTITY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageAssociationEndImpl <em>Message Association End</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageAssociationEndImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageAssociationEnd() * @generated */ int MESSAGE_ASSOCIATION_END = 52; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__NEXT_VERSIONS = MESSAGE_ELEMENT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__PREVIOUS_VERSION = MESSAGE_ELEMENT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__OBJECT_IDENTIFIER = MESSAGE_ELEMENT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__NAME = MESSAGE_ELEMENT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__DEFINITION = MESSAGE_ELEMENT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__SEMANTIC_MARKUP = MESSAGE_ELEMENT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__DOCLET = MESSAGE_ELEMENT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__EXAMPLE = MESSAGE_ELEMENT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__CONSTRAINT = MESSAGE_ELEMENT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__REGISTRATION_STATUS = MESSAGE_ELEMENT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__REMOVAL_DATE = MESSAGE_ELEMENT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__MAX_OCCURS = MESSAGE_ELEMENT__MAX_OCCURS; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__MIN_OCCURS = MESSAGE_ELEMENT__MIN_OCCURS; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__MEMBER_TYPE = MESSAGE_ELEMENT__MEMBER_TYPE; /** * The feature id for the '<em><b>Xml Tag</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__XML_TAG = MESSAGE_ELEMENT__XML_TAG; /** * The feature id for the '<em><b>Xml Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__XML_MEMBER_TYPE = MESSAGE_ELEMENT__XML_MEMBER_TYPE; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__IS_TECHNICAL = MESSAGE_ELEMENT__IS_TECHNICAL; /** * The feature id for the '<em><b>Business Component Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__BUSINESS_COMPONENT_TRACE = MESSAGE_ELEMENT__BUSINESS_COMPONENT_TRACE; /** * The feature id for the '<em><b>Business Element Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__BUSINESS_ELEMENT_TRACE = MESSAGE_ELEMENT__BUSINESS_ELEMENT_TRACE; /** * The feature id for the '<em><b>Component Context</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__COMPONENT_CONTEXT = MESSAGE_ELEMENT__COMPONENT_CONTEXT; /** * The feature id for the '<em><b>Is Derived</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__IS_DERIVED = MESSAGE_ELEMENT__IS_DERIVED; /** * The feature id for the '<em><b>Is Composite</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__IS_COMPOSITE = MESSAGE_ELEMENT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END__TYPE = MESSAGE_ELEMENT_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Message Association End</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END_FEATURE_COUNT = MESSAGE_ELEMENT_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>No More Than One Trace</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END___NO_MORE_THAN_ONE_TRACE__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT___NO_MORE_THAN_ONE_TRACE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Cardinality Alignment</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END___CARDINALITY_ALIGNMENT__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT___CARDINALITY_ALIGNMENT__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Message Association End</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ASSOCIATION_END_OPERATION_COUNT = MESSAGE_ELEMENT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MessageAttributeImpl <em>Message Attribute</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MessageAttributeImpl * @see iso20022.impl.Iso20022PackageImpl#getMessageAttribute() * @generated */ int MESSAGE_ATTRIBUTE = 53; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__NEXT_VERSIONS = MESSAGE_ELEMENT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__PREVIOUS_VERSION = MESSAGE_ELEMENT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__OBJECT_IDENTIFIER = MESSAGE_ELEMENT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__NAME = MESSAGE_ELEMENT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__DEFINITION = MESSAGE_ELEMENT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__SEMANTIC_MARKUP = MESSAGE_ELEMENT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__DOCLET = MESSAGE_ELEMENT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__EXAMPLE = MESSAGE_ELEMENT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__CONSTRAINT = MESSAGE_ELEMENT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__REGISTRATION_STATUS = MESSAGE_ELEMENT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__REMOVAL_DATE = MESSAGE_ELEMENT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__MAX_OCCURS = MESSAGE_ELEMENT__MAX_OCCURS; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__MIN_OCCURS = MESSAGE_ELEMENT__MIN_OCCURS; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__MEMBER_TYPE = MESSAGE_ELEMENT__MEMBER_TYPE; /** * The feature id for the '<em><b>Xml Tag</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__XML_TAG = MESSAGE_ELEMENT__XML_TAG; /** * The feature id for the '<em><b>Xml Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__XML_MEMBER_TYPE = MESSAGE_ELEMENT__XML_MEMBER_TYPE; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__IS_TECHNICAL = MESSAGE_ELEMENT__IS_TECHNICAL; /** * The feature id for the '<em><b>Business Component Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__BUSINESS_COMPONENT_TRACE = MESSAGE_ELEMENT__BUSINESS_COMPONENT_TRACE; /** * The feature id for the '<em><b>Business Element Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__BUSINESS_ELEMENT_TRACE = MESSAGE_ELEMENT__BUSINESS_ELEMENT_TRACE; /** * The feature id for the '<em><b>Component Context</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__COMPONENT_CONTEXT = MESSAGE_ELEMENT__COMPONENT_CONTEXT; /** * The feature id for the '<em><b>Is Derived</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__IS_DERIVED = MESSAGE_ELEMENT__IS_DERIVED; /** * The feature id for the '<em><b>Simple Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__SIMPLE_TYPE = MESSAGE_ELEMENT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Complex Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE__COMPLEX_TYPE = MESSAGE_ELEMENT_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Message Attribute</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE_FEATURE_COUNT = MESSAGE_ELEMENT_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>No More Than One Trace</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE___NO_MORE_THAN_ONE_TRACE__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT___NO_MORE_THAN_ONE_TRACE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Cardinality Alignment</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE___CARDINALITY_ALIGNMENT__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT___CARDINALITY_ALIGNMENT__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Message Attribute Has Exactly One Type</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE___MESSAGE_ATTRIBUTE_HAS_EXACTLY_ONE_TYPE__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Message Attribute</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MESSAGE_ATTRIBUTE_OPERATION_COUNT = MESSAGE_ELEMENT_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.BusinessAttributeImpl <em>Business Attribute</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BusinessAttributeImpl * @see iso20022.impl.Iso20022PackageImpl#getBusinessAttribute() * @generated */ int BUSINESS_ATTRIBUTE = 54; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__NEXT_VERSIONS = BUSINESS_ELEMENT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__PREVIOUS_VERSION = BUSINESS_ELEMENT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__OBJECT_IDENTIFIER = BUSINESS_ELEMENT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__NAME = BUSINESS_ELEMENT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__DEFINITION = BUSINESS_ELEMENT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__SEMANTIC_MARKUP = BUSINESS_ELEMENT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__DOCLET = BUSINESS_ELEMENT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__EXAMPLE = BUSINESS_ELEMENT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__CONSTRAINT = BUSINESS_ELEMENT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__REGISTRATION_STATUS = BUSINESS_ELEMENT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__REMOVAL_DATE = BUSINESS_ELEMENT__REMOVAL_DATE; /** * The feature id for the '<em><b>Max Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__MAX_OCCURS = BUSINESS_ELEMENT__MAX_OCCURS; /** * The feature id for the '<em><b>Min Occurs</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__MIN_OCCURS = BUSINESS_ELEMENT__MIN_OCCURS; /** * The feature id for the '<em><b>Member Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__MEMBER_TYPE = BUSINESS_ELEMENT__MEMBER_TYPE; /** * The feature id for the '<em><b>Is Derived</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__IS_DERIVED = BUSINESS_ELEMENT__IS_DERIVED; /** * The feature id for the '<em><b>Derivation</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__DERIVATION = BUSINESS_ELEMENT__DERIVATION; /** * The feature id for the '<em><b>Business Element Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__BUSINESS_ELEMENT_TYPE = BUSINESS_ELEMENT__BUSINESS_ELEMENT_TYPE; /** * The feature id for the '<em><b>Element Context</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__ELEMENT_CONTEXT = BUSINESS_ELEMENT__ELEMENT_CONTEXT; /** * The feature id for the '<em><b>Simple Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__SIMPLE_TYPE = BUSINESS_ELEMENT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Complex Type</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE__COMPLEX_TYPE = BUSINESS_ELEMENT_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Business Attribute</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE_FEATURE_COUNT = BUSINESS_ELEMENT_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = BUSINESS_ELEMENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = BUSINESS_ELEMENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Business Attribute Has Exactly One Type</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE___BUSINESS_ATTRIBUTE_HAS_EXACTLY_ONE_TYPE__MAP_DIAGNOSTICCHAIN = BUSINESS_ELEMENT_OPERATION_COUNT + 0; /** * The operation id for the '<em>No Deriving Code Set Type</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE___NO_DERIVING_CODE_SET_TYPE__MAP_DIAGNOSTICCHAIN = BUSINESS_ELEMENT_OPERATION_COUNT + 1; /** * The number of operations of the '<em>Business Attribute</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BUSINESS_ATTRIBUTE_OPERATION_COUNT = BUSINESS_ELEMENT_OPERATION_COUNT + 2; /** * The meta object id for the '{@link iso20022.impl.StringImpl <em>String</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.StringImpl * @see iso20022.impl.Iso20022PackageImpl#getString() * @generated */ int STRING = 56; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__NEXT_VERSIONS = DATA_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__PREVIOUS_VERSION = DATA_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__OBJECT_IDENTIFIER = DATA_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__NAME = DATA_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__DEFINITION = DATA_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__SEMANTIC_MARKUP = DATA_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__DOCLET = DATA_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__EXAMPLE = DATA_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__CONSTRAINT = DATA_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__REGISTRATION_STATUS = DATA_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__REMOVAL_DATE = DATA_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__DATA_DICTIONARY = DATA_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__MIN_LENGTH = DATA_TYPE_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Max Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__MAX_LENGTH = DATA_TYPE_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__LENGTH = DATA_TYPE_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING__PATTERN = DATA_TYPE_FEATURE_COUNT + 3; /** * The number of structural features of the '<em>String</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING_FEATURE_COUNT = DATA_TYPE_FEATURE_COUNT + 4; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DATA_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DATA_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>String</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int STRING_OPERATION_COUNT = DATA_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.TextImpl <em>Text</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.TextImpl * @see iso20022.impl.Iso20022PackageImpl#getText() * @generated */ int TEXT = 55; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__NEXT_VERSIONS = STRING__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__PREVIOUS_VERSION = STRING__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__OBJECT_IDENTIFIER = STRING__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__NAME = STRING__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__DEFINITION = STRING__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__SEMANTIC_MARKUP = STRING__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__DOCLET = STRING__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__EXAMPLE = STRING__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__CONSTRAINT = STRING__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__REGISTRATION_STATUS = STRING__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__REMOVAL_DATE = STRING__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__DATA_DICTIONARY = STRING__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__MIN_LENGTH = STRING__MIN_LENGTH; /** * The feature id for the '<em><b>Max Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__MAX_LENGTH = STRING__MAX_LENGTH; /** * The feature id for the '<em><b>Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__LENGTH = STRING__LENGTH; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT__PATTERN = STRING__PATTERN; /** * The number of structural features of the '<em>Text</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT_FEATURE_COUNT = STRING_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = STRING___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = STRING___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Text</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TEXT_OPERATION_COUNT = STRING_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.IdentifierSetImpl <em>Identifier Set</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.IdentifierSetImpl * @see iso20022.impl.Iso20022PackageImpl#getIdentifierSet() * @generated */ int IDENTIFIER_SET = 57; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__NEXT_VERSIONS = STRING__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__PREVIOUS_VERSION = STRING__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__OBJECT_IDENTIFIER = STRING__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__NAME = STRING__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__DEFINITION = STRING__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__SEMANTIC_MARKUP = STRING__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__DOCLET = STRING__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__EXAMPLE = STRING__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__CONSTRAINT = STRING__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__REGISTRATION_STATUS = STRING__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__REMOVAL_DATE = STRING__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__DATA_DICTIONARY = STRING__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__MIN_LENGTH = STRING__MIN_LENGTH; /** * The feature id for the '<em><b>Max Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__MAX_LENGTH = STRING__MAX_LENGTH; /** * The feature id for the '<em><b>Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__LENGTH = STRING__LENGTH; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__PATTERN = STRING__PATTERN; /** * The feature id for the '<em><b>Identification Scheme</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET__IDENTIFICATION_SCHEME = STRING_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Identifier Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET_FEATURE_COUNT = STRING_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = STRING___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = STRING___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Identifier Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int IDENTIFIER_SET_OPERATION_COUNT = STRING_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BooleanImpl <em>Boolean</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BooleanImpl * @see iso20022.impl.Iso20022PackageImpl#getBoolean() * @generated */ int BOOLEAN = 59; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__NEXT_VERSIONS = DATA_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__PREVIOUS_VERSION = DATA_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__OBJECT_IDENTIFIER = DATA_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__NAME = DATA_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__DEFINITION = DATA_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__SEMANTIC_MARKUP = DATA_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__DOCLET = DATA_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__EXAMPLE = DATA_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__CONSTRAINT = DATA_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__REGISTRATION_STATUS = DATA_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__REMOVAL_DATE = DATA_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__DATA_DICTIONARY = DATA_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN__PATTERN = DATA_TYPE_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Boolean</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN_FEATURE_COUNT = DATA_TYPE_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DATA_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DATA_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Boolean</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BOOLEAN_OPERATION_COUNT = DATA_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.IndicatorImpl <em>Indicator</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.IndicatorImpl * @see iso20022.impl.Iso20022PackageImpl#getIndicator() * @generated */ int INDICATOR = 58; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__NEXT_VERSIONS = BOOLEAN__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__PREVIOUS_VERSION = BOOLEAN__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__OBJECT_IDENTIFIER = BOOLEAN__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__NAME = BOOLEAN__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__DEFINITION = BOOLEAN__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__SEMANTIC_MARKUP = BOOLEAN__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__DOCLET = BOOLEAN__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__EXAMPLE = BOOLEAN__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__CONSTRAINT = BOOLEAN__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__REGISTRATION_STATUS = BOOLEAN__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__REMOVAL_DATE = BOOLEAN__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__DATA_DICTIONARY = BOOLEAN__DATA_DICTIONARY; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__PATTERN = BOOLEAN__PATTERN; /** * The feature id for the '<em><b>Meaning When True</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__MEANING_WHEN_TRUE = BOOLEAN_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Meaning When False</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR__MEANING_WHEN_FALSE = BOOLEAN_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Indicator</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR_FEATURE_COUNT = BOOLEAN_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = BOOLEAN___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = BOOLEAN___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Indicator</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDICATOR_OPERATION_COUNT = BOOLEAN_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.DecimalImpl <em>Decimal</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.DecimalImpl * @see iso20022.impl.Iso20022PackageImpl#getDecimal() * @generated */ int DECIMAL = 61; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__NEXT_VERSIONS = DATA_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__PREVIOUS_VERSION = DATA_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__OBJECT_IDENTIFIER = DATA_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__NAME = DATA_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__DEFINITION = DATA_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__SEMANTIC_MARKUP = DATA_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__DOCLET = DATA_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__EXAMPLE = DATA_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__CONSTRAINT = DATA_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__REGISTRATION_STATUS = DATA_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__REMOVAL_DATE = DATA_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__DATA_DICTIONARY = DATA_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__MIN_INCLUSIVE = DATA_TYPE_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__MIN_EXCLUSIVE = DATA_TYPE_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__MAX_INCLUSIVE = DATA_TYPE_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__MAX_EXCLUSIVE = DATA_TYPE_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Total Digits</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__TOTAL_DIGITS = DATA_TYPE_FEATURE_COUNT + 4; /** * The feature id for the '<em><b>Fraction Digits</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__FRACTION_DIGITS = DATA_TYPE_FEATURE_COUNT + 5; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL__PATTERN = DATA_TYPE_FEATURE_COUNT + 6; /** * The number of structural features of the '<em>Decimal</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL_FEATURE_COUNT = DATA_TYPE_FEATURE_COUNT + 7; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DATA_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DATA_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Decimal</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DECIMAL_OPERATION_COUNT = DATA_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.RateImpl <em>Rate</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.RateImpl * @see iso20022.impl.Iso20022PackageImpl#getRate() * @generated */ int RATE = 60; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__NEXT_VERSIONS = DECIMAL__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__PREVIOUS_VERSION = DECIMAL__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__OBJECT_IDENTIFIER = DECIMAL__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__NAME = DECIMAL__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__DEFINITION = DECIMAL__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__SEMANTIC_MARKUP = DECIMAL__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__DOCLET = DECIMAL__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__EXAMPLE = DECIMAL__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__CONSTRAINT = DECIMAL__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__REGISTRATION_STATUS = DECIMAL__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__REMOVAL_DATE = DECIMAL__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__DATA_DICTIONARY = DECIMAL__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__MIN_INCLUSIVE = DECIMAL__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__MIN_EXCLUSIVE = DECIMAL__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__MAX_INCLUSIVE = DECIMAL__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__MAX_EXCLUSIVE = DECIMAL__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Total Digits</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__TOTAL_DIGITS = DECIMAL__TOTAL_DIGITS; /** * The feature id for the '<em><b>Fraction Digits</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__FRACTION_DIGITS = DECIMAL__FRACTION_DIGITS; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__PATTERN = DECIMAL__PATTERN; /** * The feature id for the '<em><b>Base Value</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__BASE_VALUE = DECIMAL_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Base Unit Code</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE__BASE_UNIT_CODE = DECIMAL_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Rate</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE_FEATURE_COUNT = DECIMAL_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DECIMAL___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DECIMAL___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Rate</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int RATE_OPERATION_COUNT = DECIMAL_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ExternalSchemaImpl <em>External Schema</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ExternalSchemaImpl * @see iso20022.impl.Iso20022PackageImpl#getExternalSchema() * @generated */ int EXTERNAL_SCHEMA = 62; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__NEXT_VERSIONS = MESSAGE_COMPONENT_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__PREVIOUS_VERSION = MESSAGE_COMPONENT_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__OBJECT_IDENTIFIER = MESSAGE_COMPONENT_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__NAME = MESSAGE_COMPONENT_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__DEFINITION = MESSAGE_COMPONENT_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__SEMANTIC_MARKUP = MESSAGE_COMPONENT_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__DOCLET = MESSAGE_COMPONENT_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__EXAMPLE = MESSAGE_COMPONENT_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__CONSTRAINT = MESSAGE_COMPONENT_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__REGISTRATION_STATUS = MESSAGE_COMPONENT_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__REMOVAL_DATE = MESSAGE_COMPONENT_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__DATA_DICTIONARY = MESSAGE_COMPONENT_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Message Building Block</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__MESSAGE_BUILDING_BLOCK = MESSAGE_COMPONENT_TYPE__MESSAGE_BUILDING_BLOCK; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__IS_TECHNICAL = MESSAGE_COMPONENT_TYPE__IS_TECHNICAL; /** * The feature id for the '<em><b>Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__TRACE = MESSAGE_COMPONENT_TYPE__TRACE; /** * The feature id for the '<em><b>Namespace List</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__NAMESPACE_LIST = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Process Content</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA__PROCESS_CONTENT = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>External Schema</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA_FEATURE_COUNT = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_COMPONENT_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_COMPONENT_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>External Schema</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int EXTERNAL_SCHEMA_OPERATION_COUNT = MESSAGE_COMPONENT_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.QuantityImpl <em>Quantity</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.QuantityImpl * @see iso20022.impl.Iso20022PackageImpl#getQuantity() * @generated */ int QUANTITY = 63; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__NEXT_VERSIONS = DECIMAL__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__PREVIOUS_VERSION = DECIMAL__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__OBJECT_IDENTIFIER = DECIMAL__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__NAME = DECIMAL__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__DEFINITION = DECIMAL__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__SEMANTIC_MARKUP = DECIMAL__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__DOCLET = DECIMAL__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__EXAMPLE = DECIMAL__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__CONSTRAINT = DECIMAL__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__REGISTRATION_STATUS = DECIMAL__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__REMOVAL_DATE = DECIMAL__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__DATA_DICTIONARY = DECIMAL__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__MIN_INCLUSIVE = DECIMAL__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__MIN_EXCLUSIVE = DECIMAL__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__MAX_INCLUSIVE = DECIMAL__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__MAX_EXCLUSIVE = DECIMAL__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Total Digits</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__TOTAL_DIGITS = DECIMAL__TOTAL_DIGITS; /** * The feature id for the '<em><b>Fraction Digits</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__FRACTION_DIGITS = DECIMAL__FRACTION_DIGITS; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__PATTERN = DECIMAL__PATTERN; /** * The feature id for the '<em><b>Unit Code</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY__UNIT_CODE = DECIMAL_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Quantity</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY_FEATURE_COUNT = DECIMAL_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DECIMAL___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DECIMAL___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Quantity</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int QUANTITY_OPERATION_COUNT = DECIMAL_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.CodeImpl <em>Code</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.CodeImpl * @see iso20022.impl.Iso20022PackageImpl#getCode() * @generated */ int CODE = 64; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__NEXT_VERSIONS = REPOSITORY_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__PREVIOUS_VERSION = REPOSITORY_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__OBJECT_IDENTIFIER = REPOSITORY_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__NAME = REPOSITORY_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__DEFINITION = REPOSITORY_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__SEMANTIC_MARKUP = REPOSITORY_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__DOCLET = REPOSITORY_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__EXAMPLE = REPOSITORY_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__CONSTRAINT = REPOSITORY_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__REGISTRATION_STATUS = REPOSITORY_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__REMOVAL_DATE = REPOSITORY_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Code Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__CODE_NAME = REPOSITORY_CONCEPT_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Owner</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE__OWNER = REPOSITORY_CONCEPT_FEATURE_COUNT + 1; /** * The number of structural features of the '<em>Code</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_FEATURE_COUNT = REPOSITORY_CONCEPT_FEATURE_COUNT + 2; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = REPOSITORY_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Code</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_OPERATION_COUNT = REPOSITORY_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.CodeSetImpl <em>Code Set</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.CodeSetImpl * @see iso20022.impl.Iso20022PackageImpl#getCodeSet() * @generated */ int CODE_SET = 65; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__NEXT_VERSIONS = STRING__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__PREVIOUS_VERSION = STRING__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__OBJECT_IDENTIFIER = STRING__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__NAME = STRING__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__DEFINITION = STRING__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__SEMANTIC_MARKUP = STRING__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__DOCLET = STRING__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__EXAMPLE = STRING__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__CONSTRAINT = STRING__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__REGISTRATION_STATUS = STRING__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__REMOVAL_DATE = STRING__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__DATA_DICTIONARY = STRING__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__MIN_LENGTH = STRING__MIN_LENGTH; /** * The feature id for the '<em><b>Max Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__MAX_LENGTH = STRING__MAX_LENGTH; /** * The feature id for the '<em><b>Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__LENGTH = STRING__LENGTH; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__PATTERN = STRING__PATTERN; /** * The feature id for the '<em><b>Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__TRACE = STRING_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Derivation</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__DERIVATION = STRING_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Identification Scheme</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__IDENTIFICATION_SCHEME = STRING_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Code</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET__CODE = STRING_FEATURE_COUNT + 3; /** * The number of structural features of the '<em>Code Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET_FEATURE_COUNT = STRING_FEATURE_COUNT + 4; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = STRING___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = STRING___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Code Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CODE_SET_OPERATION_COUNT = STRING_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.AmountImpl <em>Amount</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.AmountImpl * @see iso20022.impl.Iso20022PackageImpl#getAmount() * @generated */ int AMOUNT = 66; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__NEXT_VERSIONS = DECIMAL__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__PREVIOUS_VERSION = DECIMAL__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__OBJECT_IDENTIFIER = DECIMAL__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__NAME = DECIMAL__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__DEFINITION = DECIMAL__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__SEMANTIC_MARKUP = DECIMAL__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__DOCLET = DECIMAL__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__EXAMPLE = DECIMAL__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__CONSTRAINT = DECIMAL__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__REGISTRATION_STATUS = DECIMAL__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__REMOVAL_DATE = DECIMAL__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__DATA_DICTIONARY = DECIMAL__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__MIN_INCLUSIVE = DECIMAL__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__MIN_EXCLUSIVE = DECIMAL__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__MAX_INCLUSIVE = DECIMAL__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__MAX_EXCLUSIVE = DECIMAL__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Total Digits</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__TOTAL_DIGITS = DECIMAL__TOTAL_DIGITS; /** * The feature id for the '<em><b>Fraction Digits</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__FRACTION_DIGITS = DECIMAL__FRACTION_DIGITS; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__PATTERN = DECIMAL__PATTERN; /** * The feature id for the '<em><b>Currency Identifier Set</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT__CURRENCY_IDENTIFIER_SET = DECIMAL_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Amount</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT_FEATURE_COUNT = DECIMAL_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DECIMAL___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DECIMAL___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Amount</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int AMOUNT_OPERATION_COUNT = DECIMAL_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ChoiceComponentImpl <em>Choice Component</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ChoiceComponentImpl * @see iso20022.impl.Iso20022PackageImpl#getChoiceComponent() * @generated */ int CHOICE_COMPONENT = 67; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__NEXT_VERSIONS = MESSAGE_ELEMENT_CONTAINER__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__PREVIOUS_VERSION = MESSAGE_ELEMENT_CONTAINER__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__OBJECT_IDENTIFIER = MESSAGE_ELEMENT_CONTAINER__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__NAME = MESSAGE_ELEMENT_CONTAINER__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__DEFINITION = MESSAGE_ELEMENT_CONTAINER__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__SEMANTIC_MARKUP = MESSAGE_ELEMENT_CONTAINER__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__DOCLET = MESSAGE_ELEMENT_CONTAINER__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__EXAMPLE = MESSAGE_ELEMENT_CONTAINER__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__CONSTRAINT = MESSAGE_ELEMENT_CONTAINER__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__REGISTRATION_STATUS = MESSAGE_ELEMENT_CONTAINER__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__REMOVAL_DATE = MESSAGE_ELEMENT_CONTAINER__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__DATA_DICTIONARY = MESSAGE_ELEMENT_CONTAINER__DATA_DICTIONARY; /** * The feature id for the '<em><b>Message Building Block</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__MESSAGE_BUILDING_BLOCK = MESSAGE_ELEMENT_CONTAINER__MESSAGE_BUILDING_BLOCK; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__IS_TECHNICAL = MESSAGE_ELEMENT_CONTAINER__IS_TECHNICAL; /** * The feature id for the '<em><b>Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__TRACE = MESSAGE_ELEMENT_CONTAINER__TRACE; /** * The feature id for the '<em><b>Message Element</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT__MESSAGE_ELEMENT = MESSAGE_ELEMENT_CONTAINER__MESSAGE_ELEMENT; /** * The number of structural features of the '<em>Choice Component</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT_FEATURE_COUNT = MESSAGE_ELEMENT_CONTAINER_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Message Elements Have Unique Names</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT___MESSAGE_ELEMENTS_HAVE_UNIQUE_NAMES__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER___MESSAGE_ELEMENTS_HAVE_UNIQUE_NAMES__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Technical Element</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT___TECHNICAL_ELEMENT__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER___TECHNICAL_ELEMENT__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>At Least One Property</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT___AT_LEAST_ONE_PROPERTY__MAP_DIAGNOSTICCHAIN = MESSAGE_ELEMENT_CONTAINER_OPERATION_COUNT + 0; /** * The number of operations of the '<em>Choice Component</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CHOICE_COMPONENT_OPERATION_COUNT = MESSAGE_ELEMENT_CONTAINER_OPERATION_COUNT + 1; /** * The meta object id for the '{@link iso20022.impl.AbstractDateTimeConceptImpl <em>Abstract Date Time Concept</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.AbstractDateTimeConceptImpl * @see iso20022.impl.Iso20022PackageImpl#getAbstractDateTimeConcept() * @generated */ int ABSTRACT_DATE_TIME_CONCEPT = 68; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS = DATA_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION = DATA_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER = DATA_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__NAME = DATA_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__DEFINITION = DATA_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP = DATA_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__DOCLET = DATA_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE = DATA_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT = DATA_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS = DATA_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE = DATA_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY = DATA_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE = DATA_TYPE_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE = DATA_TYPE_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE = DATA_TYPE_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE = DATA_TYPE_FEATURE_COUNT + 3; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT__PATTERN = DATA_TYPE_FEATURE_COUNT + 4; /** * The number of structural features of the '<em>Abstract Date Time Concept</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT = DATA_TYPE_FEATURE_COUNT + 5; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DATA_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DATA_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Abstract Date Time Concept</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT = DATA_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.EndPointCategoryImpl <em>End Point Category</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.EndPointCategoryImpl * @see iso20022.impl.Iso20022PackageImpl#getEndPointCategory() * @generated */ int END_POINT_CATEGORY = 69; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__NEXT_VERSIONS = TOP_LEVEL_DICTIONARY_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__PREVIOUS_VERSION = TOP_LEVEL_DICTIONARY_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__OBJECT_IDENTIFIER = TOP_LEVEL_DICTIONARY_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__NAME = TOP_LEVEL_DICTIONARY_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__DEFINITION = TOP_LEVEL_DICTIONARY_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__SEMANTIC_MARKUP = TOP_LEVEL_DICTIONARY_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__DOCLET = TOP_LEVEL_DICTIONARY_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__EXAMPLE = TOP_LEVEL_DICTIONARY_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__CONSTRAINT = TOP_LEVEL_DICTIONARY_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__REGISTRATION_STATUS = TOP_LEVEL_DICTIONARY_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__REMOVAL_DATE = TOP_LEVEL_DICTIONARY_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__DATA_DICTIONARY = TOP_LEVEL_DICTIONARY_ENTRY__DATA_DICTIONARY; /** * The feature id for the '<em><b>End Points</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY__END_POINTS = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>End Point Category</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY_FEATURE_COUNT = TOP_LEVEL_DICTIONARY_ENTRY_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_DICTIONARY_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>End Point Category</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int END_POINT_CATEGORY_OPERATION_COUNT = TOP_LEVEL_DICTIONARY_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.BinaryImpl <em>Binary</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.BinaryImpl * @see iso20022.impl.Iso20022PackageImpl#getBinary() * @generated */ int BINARY = 70; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__NEXT_VERSIONS = DATA_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__PREVIOUS_VERSION = DATA_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__OBJECT_IDENTIFIER = DATA_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__NAME = DATA_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__DEFINITION = DATA_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__SEMANTIC_MARKUP = DATA_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__DOCLET = DATA_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__EXAMPLE = DATA_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__CONSTRAINT = DATA_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__REGISTRATION_STATUS = DATA_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__REMOVAL_DATE = DATA_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__DATA_DICTIONARY = DATA_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__MIN_LENGTH = DATA_TYPE_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Max Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__MAX_LENGTH = DATA_TYPE_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Length</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__LENGTH = DATA_TYPE_FEATURE_COUNT + 2; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY__PATTERN = DATA_TYPE_FEATURE_COUNT + 3; /** * The number of structural features of the '<em>Binary</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY_FEATURE_COUNT = DATA_TYPE_FEATURE_COUNT + 4; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DATA_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DATA_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Binary</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int BINARY_OPERATION_COUNT = DATA_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.DateImpl <em>Date</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.DateImpl * @see iso20022.impl.Iso20022PackageImpl#getDate() * @generated */ int DATE = 71; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Date</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Date</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.DateTimeImpl <em>Date Time</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.DateTimeImpl * @see iso20022.impl.Iso20022PackageImpl#getDateTime() * @generated */ int DATE_TIME = 72; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Date Time</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Date Time</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DATE_TIME_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.DayImpl <em>Day</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.DayImpl * @see iso20022.impl.Iso20022PackageImpl#getDay() * @generated */ int DAY = 73; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Day</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Day</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DAY_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.DurationImpl <em>Duration</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.DurationImpl * @see iso20022.impl.Iso20022PackageImpl#getDuration() * @generated */ int DURATION = 74; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Duration</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Duration</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int DURATION_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MonthImpl <em>Month</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MonthImpl * @see iso20022.impl.Iso20022PackageImpl#getMonth() * @generated */ int MONTH = 75; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Month</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Month</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.MonthDayImpl <em>Month Day</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.MonthDayImpl * @see iso20022.impl.Iso20022PackageImpl#getMonthDay() * @generated */ int MONTH_DAY = 76; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Month Day</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Month Day</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int MONTH_DAY_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.TimeImpl <em>Time</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.TimeImpl * @see iso20022.impl.Iso20022PackageImpl#getTime() * @generated */ int TIME = 77; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Time</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Time</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int TIME_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.YearImpl <em>Year</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.YearImpl * @see iso20022.impl.Iso20022PackageImpl#getYear() * @generated */ int YEAR = 78; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Year</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Year</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.YearMonthImpl <em>Year Month</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.YearMonthImpl * @see iso20022.impl.Iso20022PackageImpl#getYearMonth() * @generated */ int YEAR_MONTH = 79; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__NEXT_VERSIONS = ABSTRACT_DATE_TIME_CONCEPT__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__PREVIOUS_VERSION = ABSTRACT_DATE_TIME_CONCEPT__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__OBJECT_IDENTIFIER = ABSTRACT_DATE_TIME_CONCEPT__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__NAME = ABSTRACT_DATE_TIME_CONCEPT__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__DEFINITION = ABSTRACT_DATE_TIME_CONCEPT__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__SEMANTIC_MARKUP = ABSTRACT_DATE_TIME_CONCEPT__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__DOCLET = ABSTRACT_DATE_TIME_CONCEPT__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__EXAMPLE = ABSTRACT_DATE_TIME_CONCEPT__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__CONSTRAINT = ABSTRACT_DATE_TIME_CONCEPT__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__REGISTRATION_STATUS = ABSTRACT_DATE_TIME_CONCEPT__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__REMOVAL_DATE = ABSTRACT_DATE_TIME_CONCEPT__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__DATA_DICTIONARY = ABSTRACT_DATE_TIME_CONCEPT__DATA_DICTIONARY; /** * The feature id for the '<em><b>Min Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__MIN_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_INCLUSIVE; /** * The feature id for the '<em><b>Min Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__MIN_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MIN_EXCLUSIVE; /** * The feature id for the '<em><b>Max Inclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__MAX_INCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_INCLUSIVE; /** * The feature id for the '<em><b>Max Exclusive</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__MAX_EXCLUSIVE = ABSTRACT_DATE_TIME_CONCEPT__MAX_EXCLUSIVE; /** * The feature id for the '<em><b>Pattern</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH__PATTERN = ABSTRACT_DATE_TIME_CONCEPT__PATTERN; /** * The number of structural features of the '<em>Year Month</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH_FEATURE_COUNT = ABSTRACT_DATE_TIME_CONCEPT_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = ABSTRACT_DATE_TIME_CONCEPT___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Year Month</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int YEAR_MONTH_OPERATION_COUNT = ABSTRACT_DATE_TIME_CONCEPT_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.UserDefinedImpl <em>User Defined</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.UserDefinedImpl * @see iso20022.impl.Iso20022PackageImpl#getUserDefined() * @generated */ int USER_DEFINED = 80; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__NEXT_VERSIONS = MESSAGE_COMPONENT_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__PREVIOUS_VERSION = MESSAGE_COMPONENT_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__OBJECT_IDENTIFIER = MESSAGE_COMPONENT_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__NAME = MESSAGE_COMPONENT_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__DEFINITION = MESSAGE_COMPONENT_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__SEMANTIC_MARKUP = MESSAGE_COMPONENT_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__DOCLET = MESSAGE_COMPONENT_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__EXAMPLE = MESSAGE_COMPONENT_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__CONSTRAINT = MESSAGE_COMPONENT_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__REGISTRATION_STATUS = MESSAGE_COMPONENT_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__REMOVAL_DATE = MESSAGE_COMPONENT_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__DATA_DICTIONARY = MESSAGE_COMPONENT_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Message Building Block</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__MESSAGE_BUILDING_BLOCK = MESSAGE_COMPONENT_TYPE__MESSAGE_BUILDING_BLOCK; /** * The feature id for the '<em><b>Is Technical</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__IS_TECHNICAL = MESSAGE_COMPONENT_TYPE__IS_TECHNICAL; /** * The feature id for the '<em><b>Trace</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__TRACE = MESSAGE_COMPONENT_TYPE__TRACE; /** * The feature id for the '<em><b>Namespace</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__NAMESPACE = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 0; /** * The feature id for the '<em><b>Namespace List</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__NAMESPACE_LIST = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 1; /** * The feature id for the '<em><b>Process Contents</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED__PROCESS_CONTENTS = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 2; /** * The number of structural features of the '<em>User Defined</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED_FEATURE_COUNT = MESSAGE_COMPONENT_TYPE_FEATURE_COUNT + 3; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = MESSAGE_COMPONENT_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = MESSAGE_COMPONENT_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>User Defined</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int USER_DEFINED_OPERATION_COUNT = MESSAGE_COMPONENT_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.IndustryMessageSetImpl <em>Industry Message Set</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.IndustryMessageSetImpl * @see iso20022.impl.Iso20022PackageImpl#getIndustryMessageSet() * @generated */ int INDUSTRY_MESSAGE_SET = 81; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The number of structural features of the '<em>Industry Message Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Industry Message Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int INDUSTRY_MESSAGE_SET_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ConvergenceDocumentationImpl <em>Convergence Documentation</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ConvergenceDocumentationImpl * @see iso20022.impl.Iso20022PackageImpl#getConvergenceDocumentation() * @generated */ int CONVERGENCE_DOCUMENTATION = 82; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__NEXT_VERSIONS = TOP_LEVEL_CATALOGUE_ENTRY__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__PREVIOUS_VERSION = TOP_LEVEL_CATALOGUE_ENTRY__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__OBJECT_IDENTIFIER = TOP_LEVEL_CATALOGUE_ENTRY__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__NAME = TOP_LEVEL_CATALOGUE_ENTRY__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__DEFINITION = TOP_LEVEL_CATALOGUE_ENTRY__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__SEMANTIC_MARKUP = TOP_LEVEL_CATALOGUE_ENTRY__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__DOCLET = TOP_LEVEL_CATALOGUE_ENTRY__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__EXAMPLE = TOP_LEVEL_CATALOGUE_ENTRY__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__CONSTRAINT = TOP_LEVEL_CATALOGUE_ENTRY__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__REGISTRATION_STATUS = TOP_LEVEL_CATALOGUE_ENTRY__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__REMOVAL_DATE = TOP_LEVEL_CATALOGUE_ENTRY__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION__BUSINESS_PROCESS_CATALOGUE = TOP_LEVEL_CATALOGUE_ENTRY__BUSINESS_PROCESS_CATALOGUE; /** * The number of structural features of the '<em>Convergence Documentation</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION_FEATURE_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = TOP_LEVEL_CATALOGUE_ENTRY___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Convergence Documentation</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int CONVERGENCE_DOCUMENTATION_OPERATION_COUNT = TOP_LEVEL_CATALOGUE_ENTRY_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.ISO15022MessageSetImpl <em>ISO15022 Message Set</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.ISO15022MessageSetImpl * @see iso20022.impl.Iso20022PackageImpl#getISO15022MessageSet() * @generated */ int ISO15022_MESSAGE_SET = 83; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__NEXT_VERSIONS = INDUSTRY_MESSAGE_SET__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__PREVIOUS_VERSION = INDUSTRY_MESSAGE_SET__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__OBJECT_IDENTIFIER = INDUSTRY_MESSAGE_SET__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__NAME = INDUSTRY_MESSAGE_SET__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__DEFINITION = INDUSTRY_MESSAGE_SET__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__SEMANTIC_MARKUP = INDUSTRY_MESSAGE_SET__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__DOCLET = INDUSTRY_MESSAGE_SET__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__EXAMPLE = INDUSTRY_MESSAGE_SET__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__CONSTRAINT = INDUSTRY_MESSAGE_SET__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__REGISTRATION_STATUS = INDUSTRY_MESSAGE_SET__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__REMOVAL_DATE = INDUSTRY_MESSAGE_SET__REMOVAL_DATE; /** * The feature id for the '<em><b>Business Process Catalogue</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET__BUSINESS_PROCESS_CATALOGUE = INDUSTRY_MESSAGE_SET__BUSINESS_PROCESS_CATALOGUE; /** * The number of structural features of the '<em>ISO15022 Message Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET_FEATURE_COUNT = INDUSTRY_MESSAGE_SET_FEATURE_COUNT + 0; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = INDUSTRY_MESSAGE_SET___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = INDUSTRY_MESSAGE_SET___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>ISO15022 Message Set</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int ISO15022_MESSAGE_SET_OPERATION_COUNT = INDUSTRY_MESSAGE_SET_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.impl.SchemaTypeImpl <em>Schema Type</em>}' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.impl.SchemaTypeImpl * @see iso20022.impl.Iso20022PackageImpl#getSchemaType() * @generated */ int SCHEMA_TYPE = 84; /** * The feature id for the '<em><b>Next Versions</b></em>' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__NEXT_VERSIONS = DATA_TYPE__NEXT_VERSIONS; /** * The feature id for the '<em><b>Previous Version</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__PREVIOUS_VERSION = DATA_TYPE__PREVIOUS_VERSION; /** * The feature id for the '<em><b>Object Identifier</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__OBJECT_IDENTIFIER = DATA_TYPE__OBJECT_IDENTIFIER; /** * The feature id for the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__NAME = DATA_TYPE__NAME; /** * The feature id for the '<em><b>Definition</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__DEFINITION = DATA_TYPE__DEFINITION; /** * The feature id for the '<em><b>Semantic Markup</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__SEMANTIC_MARKUP = DATA_TYPE__SEMANTIC_MARKUP; /** * The feature id for the '<em><b>Doclet</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__DOCLET = DATA_TYPE__DOCLET; /** * The feature id for the '<em><b>Example</b></em>' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__EXAMPLE = DATA_TYPE__EXAMPLE; /** * The feature id for the '<em><b>Constraint</b></em>' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__CONSTRAINT = DATA_TYPE__CONSTRAINT; /** * The feature id for the '<em><b>Registration Status</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__REGISTRATION_STATUS = DATA_TYPE__REGISTRATION_STATUS; /** * The feature id for the '<em><b>Removal Date</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__REMOVAL_DATE = DATA_TYPE__REMOVAL_DATE; /** * The feature id for the '<em><b>Data Dictionary</b></em>' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__DATA_DICTIONARY = DATA_TYPE__DATA_DICTIONARY; /** * The feature id for the '<em><b>Kind</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE__KIND = DATA_TYPE_FEATURE_COUNT + 0; /** * The number of structural features of the '<em>Schema Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE_FEATURE_COUNT = DATA_TYPE_FEATURE_COUNT + 1; /** * The operation id for the '<em>Removal Date Registration Status</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN = DATA_TYPE___REMOVAL_DATE_REGISTRATION_STATUS__MAP_DIAGNOSTICCHAIN; /** * The operation id for the '<em>Name First Letter Uppercase</em>' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN = DATA_TYPE___NAME_FIRST_LETTER_UPPERCASE__MAP_DIAGNOSTICCHAIN; /** * The number of operations of the '<em>Schema Type</em>' class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ int SCHEMA_TYPE_OPERATION_COUNT = DATA_TYPE_OPERATION_COUNT + 0; /** * The meta object id for the '{@link iso20022.RegistrationStatus <em>Registration Status</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.RegistrationStatus * @see iso20022.impl.Iso20022PackageImpl#getRegistrationStatus() * @generated */ int REGISTRATION_STATUS = 85; /** * The meta object id for the '{@link iso20022.Aggregation <em>Aggregation</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.Aggregation * @see iso20022.impl.Iso20022PackageImpl#getAggregation() * @generated */ int AGGREGATION = 86; /** * The meta object id for the '{@link iso20022.DeliveryAssurance <em>Delivery Assurance</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.DeliveryAssurance * @see iso20022.impl.Iso20022PackageImpl#getDeliveryAssurance() * @generated */ int DELIVERY_ASSURANCE = 87; /** * The meta object id for the '{@link iso20022.Durability <em>Durability</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.Durability * @see iso20022.impl.Iso20022PackageImpl#getDurability() * @generated */ int DURABILITY = 88; /** * The meta object id for the '{@link iso20022.MessageCasting <em>Message Casting</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.MessageCasting * @see iso20022.impl.Iso20022PackageImpl#getMessageCasting() * @generated */ int MESSAGE_CASTING = 89; /** * The meta object id for the '{@link iso20022.MessageDeliveryOrder <em>Message Delivery Order</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.MessageDeliveryOrder * @see iso20022.impl.Iso20022PackageImpl#getMessageDeliveryOrder() * @generated */ int MESSAGE_DELIVERY_ORDER = 90; /** * The meta object id for the '{@link iso20022.MessageValidationLevel <em>Message Validation Level</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.MessageValidationLevel * @see iso20022.impl.Iso20022PackageImpl#getMessageValidationLevel() * @generated */ int MESSAGE_VALIDATION_LEVEL = 91; /** * The meta object id for the '{@link iso20022.MessageValidationOnOff <em>Message Validation On Off</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.MessageValidationOnOff * @see iso20022.impl.Iso20022PackageImpl#getMessageValidationOnOff() * @generated */ int MESSAGE_VALIDATION_ON_OFF = 92; /** * The meta object id for the '{@link iso20022.MessageValidationResults <em>Message Validation Results</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.MessageValidationResults * @see iso20022.impl.Iso20022PackageImpl#getMessageValidationResults() * @generated */ int MESSAGE_VALIDATION_RESULTS = 93; /** * The meta object id for the '{@link iso20022.ReceiverAsynchronicity <em>Receiver Asynchronicity</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.ReceiverAsynchronicity * @see iso20022.impl.Iso20022PackageImpl#getReceiverAsynchronicity() * @generated */ int RECEIVER_ASYNCHRONICITY = 94; /** * The meta object id for the '{@link iso20022.SenderAsynchronicity <em>Sender Asynchronicity</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.SenderAsynchronicity * @see iso20022.impl.Iso20022PackageImpl#getSenderAsynchronicity() * @generated */ int SENDER_ASYNCHRONICITY = 95; /** * The meta object id for the '{@link iso20022.ProcessContent <em>Process Content</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.ProcessContent * @see iso20022.impl.Iso20022PackageImpl#getProcessContent() * @generated */ int PROCESS_CONTENT = 96; /** * The meta object id for the '{@link iso20022.Namespace <em>Namespace</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.Namespace * @see iso20022.impl.Iso20022PackageImpl#getNamespace() * @generated */ int NAMESPACE = 97; /** * The meta object id for the '{@link iso20022.SchemaTypeKind <em>Schema Type Kind</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.SchemaTypeKind * @see iso20022.impl.Iso20022PackageImpl#getSchemaTypeKind() * @generated */ int SCHEMA_TYPE_KIND = 98; /** * The meta object id for the '{@link iso20022.ISO20022Version <em>ISO20022 Version</em>}' enum. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see iso20022.ISO20022Version * @see iso20022.impl.Iso20022PackageImpl#getISO20022Version() * @generated */ int ISO20022_VERSION = 99; /** * Returns the meta object for class '{@link iso20022.Address <em>Address</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Address</em>'. * @see iso20022.Address * @generated */ EClass getAddress(); /** * Returns the meta object for the reference list '{@link iso20022.Address#getBroadCastList <em>Broad Cast List</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Broad Cast List</em>'. * @see iso20022.Address#getBroadCastList() * @see #getAddress() * @generated */ EReference getAddress_BroadCastList(); /** * Returns the meta object for the reference '{@link iso20022.Address#getEndpoint <em>Endpoint</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Endpoint</em>'. * @see iso20022.Address#getEndpoint() * @see #getAddress() * @generated */ EReference getAddress_Endpoint(); /** * Returns the meta object for class '{@link iso20022.ModelEntity <em>Model Entity</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Model Entity</em>'. * @see iso20022.ModelEntity * @generated */ EClass getModelEntity(); /** * Returns the meta object for the reference list '{@link iso20022.ModelEntity#getNextVersions <em>Next Versions</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Next Versions</em>'. * @see iso20022.ModelEntity#getNextVersions() * @see #getModelEntity() * @generated */ EReference getModelEntity_NextVersions(); /** * Returns the meta object for the reference '{@link iso20022.ModelEntity#getPreviousVersion <em>Previous Version</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Previous Version</em>'. * @see iso20022.ModelEntity#getPreviousVersion() * @see #getModelEntity() * @generated */ EReference getModelEntity_PreviousVersion(); /** * Returns the meta object for the attribute '{@link iso20022.ModelEntity#getObjectIdentifier <em>Object Identifier</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Object Identifier</em>'. * @see iso20022.ModelEntity#getObjectIdentifier() * @see #getModelEntity() * @generated */ EAttribute getModelEntity_ObjectIdentifier(); /** * Returns the meta object for class '{@link iso20022.BroadcastList <em>Broadcast List</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Broadcast List</em>'. * @see iso20022.BroadcastList * @generated */ EClass getBroadcastList(); /** * Returns the meta object for the reference list '{@link iso20022.BroadcastList#getAddress <em>Address</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Address</em>'. * @see iso20022.BroadcastList#getAddress() * @see #getBroadcastList() * @generated */ EReference getBroadcastList_Address(); /** * Returns the meta object for class '{@link iso20022.MessagingEndpoint <em>Messaging Endpoint</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Messaging Endpoint</em>'. * @see iso20022.MessagingEndpoint * @generated */ EClass getMessagingEndpoint(); /** * Returns the meta object for the container reference '{@link iso20022.MessagingEndpoint#getTransportSystem <em>Transport System</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Transport System</em>'. * @see iso20022.MessagingEndpoint#getTransportSystem() * @see #getMessagingEndpoint() * @generated */ EReference getMessagingEndpoint_TransportSystem(); /** * Returns the meta object for the reference list '{@link iso20022.MessagingEndpoint#getReceivedMessage <em>Received Message</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Received Message</em>'. * @see iso20022.MessagingEndpoint#getReceivedMessage() * @see #getMessagingEndpoint() * @generated */ EReference getMessagingEndpoint_ReceivedMessage(); /** * Returns the meta object for the reference list '{@link iso20022.MessagingEndpoint#getSentMessage <em>Sent Message</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Sent Message</em>'. * @see iso20022.MessagingEndpoint#getSentMessage() * @see #getMessagingEndpoint() * @generated */ EReference getMessagingEndpoint_SentMessage(); /** * Returns the meta object for the reference list '{@link iso20022.MessagingEndpoint#getLocation <em>Location</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Location</em>'. * @see iso20022.MessagingEndpoint#getLocation() * @see #getMessagingEndpoint() * @generated */ EReference getMessagingEndpoint_Location(); /** * Returns the meta object for class '{@link iso20022.MessageTransportSystem <em>Message Transport System</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Transport System</em>'. * @see iso20022.MessageTransportSystem * @generated */ EClass getMessageTransportSystem(); /** * Returns the meta object for the containment reference list '{@link iso20022.MessageTransportSystem#getEndpoint <em>Endpoint</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Endpoint</em>'. * @see iso20022.MessageTransportSystem#getEndpoint() * @see #getMessageTransportSystem() * @generated */ EReference getMessageTransportSystem_Endpoint(); /** * Returns the meta object for class '{@link iso20022.TransportMessage <em>Transport Message</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Transport Message</em>'. * @see iso20022.TransportMessage * @generated */ EClass getTransportMessage(); /** * Returns the meta object for the reference '{@link iso20022.TransportMessage#getSender <em>Sender</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Sender</em>'. * @see iso20022.TransportMessage#getSender() * @see #getTransportMessage() * @generated */ EReference getTransportMessage_Sender(); /** * Returns the meta object for the reference '{@link iso20022.TransportMessage#getMessageInstance <em>Message Instance</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Message Instance</em>'. * @see iso20022.TransportMessage#getMessageInstance() * @see #getTransportMessage() * @generated */ EReference getTransportMessage_MessageInstance(); /** * Returns the meta object for the reference list '{@link iso20022.TransportMessage#getReceiver <em>Receiver</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Receiver</em>'. * @see iso20022.TransportMessage#getReceiver() * @see #getTransportMessage() * @generated */ EReference getTransportMessage_Receiver(); /** * Returns the meta object for the '{@link iso20022.TransportMessage#sameMessageTransportSystem(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Same Message Transport System</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Same Message Transport System</em>' operation. * @see iso20022.TransportMessage#sameMessageTransportSystem(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getTransportMessage__SameMessageTransportSystem__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.MessageInstance <em>Message Instance</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Instance</em>'. * @see iso20022.MessageInstance * @generated */ EClass getMessageInstance(); /** * Returns the meta object for the reference '{@link iso20022.MessageInstance#getSpecification <em>Specification</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Specification</em>'. * @see iso20022.MessageInstance#getSpecification() * @see #getMessageInstance() * @generated */ EReference getMessageInstance_Specification(); /** * Returns the meta object for the reference list '{@link iso20022.MessageInstance#getTransportMessage <em>Transport Message</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Transport Message</em>'. * @see iso20022.MessageInstance#getTransportMessage() * @see #getMessageInstance() * @generated */ EReference getMessageInstance_TransportMessage(); /** * Returns the meta object for class '{@link iso20022.SyntaxMessageScheme <em>Syntax Message Scheme</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Syntax Message Scheme</em>'. * @see iso20022.SyntaxMessageScheme * @generated */ EClass getSyntaxMessageScheme(); /** * Returns the meta object for the reference '{@link iso20022.SyntaxMessageScheme#getMessageDefinitionTrace <em>Message Definition Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Message Definition Trace</em>'. * @see iso20022.SyntaxMessageScheme#getMessageDefinitionTrace() * @see #getSyntaxMessageScheme() * @generated */ EReference getSyntaxMessageScheme_MessageDefinitionTrace(); /** * Returns the meta object for class '{@link iso20022.TopLevelCatalogueEntry <em>Top Level Catalogue Entry</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Top Level Catalogue Entry</em>'. * @see iso20022.TopLevelCatalogueEntry * @generated */ EClass getTopLevelCatalogueEntry(); /** * Returns the meta object for the container reference '{@link iso20022.TopLevelCatalogueEntry#getBusinessProcessCatalogue <em>Business Process Catalogue</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Business Process Catalogue</em>'. * @see iso20022.TopLevelCatalogueEntry#getBusinessProcessCatalogue() * @see #getTopLevelCatalogueEntry() * @generated */ EReference getTopLevelCatalogueEntry_BusinessProcessCatalogue(); /** * Returns the meta object for class '{@link iso20022.RepositoryConcept <em>Repository Concept</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Repository Concept</em>'. * @see iso20022.RepositoryConcept * @generated */ EClass getRepositoryConcept(); /** * Returns the meta object for the attribute '{@link iso20022.RepositoryConcept#getName <em>Name</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Name</em>'. * @see iso20022.RepositoryConcept#getName() * @see #getRepositoryConcept() * @generated */ EAttribute getRepositoryConcept_Name(); /** * Returns the meta object for the attribute '{@link iso20022.RepositoryConcept#getDefinition <em>Definition</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Definition</em>'. * @see iso20022.RepositoryConcept#getDefinition() * @see #getRepositoryConcept() * @generated */ EAttribute getRepositoryConcept_Definition(); /** * Returns the meta object for the containment reference list '{@link iso20022.RepositoryConcept#getSemanticMarkup <em>Semantic Markup</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Semantic Markup</em>'. * @see iso20022.RepositoryConcept#getSemanticMarkup() * @see #getRepositoryConcept() * @generated */ EReference getRepositoryConcept_SemanticMarkup(); /** * Returns the meta object for the containment reference list '{@link iso20022.RepositoryConcept#getDoclet <em>Doclet</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Doclet</em>'. * @see iso20022.RepositoryConcept#getDoclet() * @see #getRepositoryConcept() * @generated */ EReference getRepositoryConcept_Doclet(); /** * Returns the meta object for the attribute list '{@link iso20022.RepositoryConcept#getExample <em>Example</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute list '<em>Example</em>'. * @see iso20022.RepositoryConcept#getExample() * @see #getRepositoryConcept() * @generated */ EAttribute getRepositoryConcept_Example(); /** * Returns the meta object for the containment reference list '{@link iso20022.RepositoryConcept#getConstraint <em>Constraint</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Constraint</em>'. * @see iso20022.RepositoryConcept#getConstraint() * @see #getRepositoryConcept() * @generated */ EReference getRepositoryConcept_Constraint(); /** * Returns the meta object for the attribute '{@link iso20022.RepositoryConcept#getRegistrationStatus <em>Registration Status</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Registration Status</em>'. * @see iso20022.RepositoryConcept#getRegistrationStatus() * @see #getRepositoryConcept() * @generated */ EAttribute getRepositoryConcept_RegistrationStatus(); /** * Returns the meta object for the attribute '{@link iso20022.RepositoryConcept#getRemovalDate <em>Removal Date</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Removal Date</em>'. * @see iso20022.RepositoryConcept#getRemovalDate() * @see #getRepositoryConcept() * @generated */ EAttribute getRepositoryConcept_RemovalDate(); /** * Returns the meta object for the '{@link iso20022.RepositoryConcept#RemovalDateRegistrationStatus(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Removal Date Registration Status</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Removal Date Registration Status</em>' operation. * @see iso20022.RepositoryConcept#RemovalDateRegistrationStatus(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getRepositoryConcept__RemovalDateRegistrationStatus__Map_DiagnosticChain(); /** * Returns the meta object for the '{@link iso20022.RepositoryConcept#NameFirstLetterUppercase(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Name First Letter Uppercase</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Name First Letter Uppercase</em>' operation. * @see iso20022.RepositoryConcept#NameFirstLetterUppercase(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getRepositoryConcept__NameFirstLetterUppercase__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.SemanticMarkup <em>Semantic Markup</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Semantic Markup</em>'. * @see iso20022.SemanticMarkup * @generated */ EClass getSemanticMarkup(); /** * Returns the meta object for the attribute '{@link iso20022.SemanticMarkup#getType <em>Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Type</em>'. * @see iso20022.SemanticMarkup#getType() * @see #getSemanticMarkup() * @generated */ EAttribute getSemanticMarkup_Type(); /** * Returns the meta object for the containment reference list '{@link iso20022.SemanticMarkup#getElements <em>Elements</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Elements</em>'. * @see iso20022.SemanticMarkup#getElements() * @see #getSemanticMarkup() * @generated */ EReference getSemanticMarkup_Elements(); /** * Returns the meta object for class '{@link iso20022.SemanticMarkupElement <em>Semantic Markup Element</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Semantic Markup Element</em>'. * @see iso20022.SemanticMarkupElement * @generated */ EClass getSemanticMarkupElement(); /** * Returns the meta object for the attribute '{@link iso20022.SemanticMarkupElement#getName <em>Name</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Name</em>'. * @see iso20022.SemanticMarkupElement#getName() * @see #getSemanticMarkupElement() * @generated */ EAttribute getSemanticMarkupElement_Name(); /** * Returns the meta object for the attribute '{@link iso20022.SemanticMarkupElement#getValue <em>Value</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Value</em>'. * @see iso20022.SemanticMarkupElement#getValue() * @see #getSemanticMarkupElement() * @generated */ EAttribute getSemanticMarkupElement_Value(); /** * Returns the meta object for class '{@link iso20022.Doclet <em>Doclet</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Doclet</em>'. * @see iso20022.Doclet * @generated */ EClass getDoclet(); /** * Returns the meta object for the attribute '{@link iso20022.Doclet#getType <em>Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Type</em>'. * @see iso20022.Doclet#getType() * @see #getDoclet() * @generated */ EAttribute getDoclet_Type(); /** * Returns the meta object for the attribute '{@link iso20022.Doclet#getContent <em>Content</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Content</em>'. * @see iso20022.Doclet#getContent() * @see #getDoclet() * @generated */ EAttribute getDoclet_Content(); /** * Returns the meta object for class '{@link iso20022.Constraint <em>Constraint</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Constraint</em>'. * @see iso20022.Constraint * @generated */ EClass getConstraint(); /** * Returns the meta object for the attribute '{@link iso20022.Constraint#getExpression <em>Expression</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Expression</em>'. * @see iso20022.Constraint#getExpression() * @see #getConstraint() * @generated */ EAttribute getConstraint_Expression(); /** * Returns the meta object for the attribute '{@link iso20022.Constraint#getExpressionLanguage <em>Expression Language</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Expression Language</em>'. * @see iso20022.Constraint#getExpressionLanguage() * @see #getConstraint() * @generated */ EAttribute getConstraint_ExpressionLanguage(); /** * Returns the meta object for the container reference '{@link iso20022.Constraint#getOwner <em>Owner</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Owner</em>'. * @see iso20022.Constraint#getOwner() * @see #getConstraint() * @generated */ EReference getConstraint_Owner(); /** * Returns the meta object for class '{@link iso20022.BusinessProcessCatalogue <em>Business Process Catalogue</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Process Catalogue</em>'. * @see iso20022.BusinessProcessCatalogue * @generated */ EClass getBusinessProcessCatalogue(); /** * Returns the meta object for the container reference '{@link iso20022.BusinessProcessCatalogue#getRepository <em>Repository</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Repository</em>'. * @see iso20022.BusinessProcessCatalogue#getRepository() * @see #getBusinessProcessCatalogue() * @generated */ EReference getBusinessProcessCatalogue_Repository(); /** * Returns the meta object for the containment reference list '{@link iso20022.BusinessProcessCatalogue#getTopLevelCatalogueEntry <em>Top Level Catalogue Entry</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Top Level Catalogue Entry</em>'. * @see iso20022.BusinessProcessCatalogue#getTopLevelCatalogueEntry() * @see #getBusinessProcessCatalogue() * @generated */ EReference getBusinessProcessCatalogue_TopLevelCatalogueEntry(); /** * Returns the meta object for the '{@link iso20022.BusinessProcessCatalogue#EntriesHaveUniqueName(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Entries Have Unique Name</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Entries Have Unique Name</em>' operation. * @see iso20022.BusinessProcessCatalogue#EntriesHaveUniqueName(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getBusinessProcessCatalogue__EntriesHaveUniqueName__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.Repository <em>Repository</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Repository</em>'. * @see iso20022.Repository * @generated */ EClass getRepository(); /** * Returns the meta object for the containment reference '{@link iso20022.Repository#getDataDictionary <em>Data Dictionary</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference '<em>Data Dictionary</em>'. * @see iso20022.Repository#getDataDictionary() * @see #getRepository() * @generated */ EReference getRepository_DataDictionary(); /** * Returns the meta object for the containment reference '{@link iso20022.Repository#getBusinessProcessCatalogue <em>Business Process Catalogue</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference '<em>Business Process Catalogue</em>'. * @see iso20022.Repository#getBusinessProcessCatalogue() * @see #getRepository() * @generated */ EReference getRepository_BusinessProcessCatalogue(); /** * Returns the meta object for class '{@link iso20022.DataDictionary <em>Data Dictionary</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Data Dictionary</em>'. * @see iso20022.DataDictionary * @generated */ EClass getDataDictionary(); /** * Returns the meta object for the containment reference list '{@link iso20022.DataDictionary#getTopLevelDictionaryEntry <em>Top Level Dictionary Entry</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Top Level Dictionary Entry</em>'. * @see iso20022.DataDictionary#getTopLevelDictionaryEntry() * @see #getDataDictionary() * @generated */ EReference getDataDictionary_TopLevelDictionaryEntry(); /** * Returns the meta object for the container reference '{@link iso20022.DataDictionary#getRepository <em>Repository</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Repository</em>'. * @see iso20022.DataDictionary#getRepository() * @see #getDataDictionary() * @generated */ EReference getDataDictionary_Repository(); /** * Returns the meta object for the '{@link iso20022.DataDictionary#EntriesHaveUniqueName(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Entries Have Unique Name</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Entries Have Unique Name</em>' operation. * @see iso20022.DataDictionary#EntriesHaveUniqueName(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getDataDictionary__EntriesHaveUniqueName__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.TopLevelDictionaryEntry <em>Top Level Dictionary Entry</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Top Level Dictionary Entry</em>'. * @see iso20022.TopLevelDictionaryEntry * @generated */ EClass getTopLevelDictionaryEntry(); /** * Returns the meta object for the container reference '{@link iso20022.TopLevelDictionaryEntry#getDataDictionary <em>Data Dictionary</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Data Dictionary</em>'. * @see iso20022.TopLevelDictionaryEntry#getDataDictionary() * @see #getTopLevelDictionaryEntry() * @generated */ EReference getTopLevelDictionaryEntry_DataDictionary(); /** * Returns the meta object for class '{@link iso20022.MessageDefinition <em>Message Definition</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Definition</em>'. * @see iso20022.MessageDefinition * @generated */ EClass getMessageDefinition(); /** * Returns the meta object for the reference list '{@link iso20022.MessageDefinition#getMessageSet <em>Message Set</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Message Set</em>'. * @see iso20022.MessageDefinition#getMessageSet() * @see #getMessageDefinition() * @generated */ EReference getMessageDefinition_MessageSet(); /** * Returns the meta object for the attribute '{@link iso20022.MessageDefinition#getXmlName <em>Xml Name</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Xml Name</em>'. * @see iso20022.MessageDefinition#getXmlName() * @see #getMessageDefinition() * @generated */ EAttribute getMessageDefinition_XmlName(); /** * Returns the meta object for the attribute '{@link iso20022.MessageDefinition#getXmlTag <em>Xml Tag</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Xml Tag</em>'. * @see iso20022.MessageDefinition#getXmlTag() * @see #getMessageDefinition() * @generated */ EAttribute getMessageDefinition_XmlTag(); /** * Returns the meta object for the container reference '{@link iso20022.MessageDefinition#getBusinessArea <em>Business Area</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Business Area</em>'. * @see iso20022.MessageDefinition#getBusinessArea() * @see #getMessageDefinition() * @generated */ EReference getMessageDefinition_BusinessArea(); /** * Returns the meta object for the containment reference list '{@link iso20022.MessageDefinition#getXors <em>Xors</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Xors</em>'. * @see iso20022.MessageDefinition#getXors() * @see #getMessageDefinition() * @generated */ EReference getMessageDefinition_Xors(); /** * Returns the meta object for the attribute '{@link iso20022.MessageDefinition#getRootElement <em>Root Element</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Root Element</em>'. * @see iso20022.MessageDefinition#getRootElement() * @see #getMessageDefinition() * @generated */ EAttribute getMessageDefinition_RootElement(); /** * Returns the meta object for the containment reference list '{@link iso20022.MessageDefinition#getMessageBuildingBlock <em>Message Building Block</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Message Building Block</em>'. * @see iso20022.MessageDefinition#getMessageBuildingBlock() * @see #getMessageDefinition() * @generated */ EReference getMessageDefinition_MessageBuildingBlock(); /** * Returns the meta object for the reference list '{@link iso20022.MessageDefinition#getChoreography <em>Choreography</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Choreography</em>'. * @see iso20022.MessageDefinition#getChoreography() * @see #getMessageDefinition() * @generated */ EReference getMessageDefinition_Choreography(); /** * Returns the meta object for the reference list '{@link iso20022.MessageDefinition#getTrace <em>Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Trace</em>'. * @see iso20022.MessageDefinition#getTrace() * @see #getMessageDefinition() * @generated */ EReference getMessageDefinition_Trace(); /** * Returns the meta object for the containment reference '{@link iso20022.MessageDefinition#getMessageDefinitionIdentifier <em>Message Definition Identifier</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference '<em>Message Definition Identifier</em>'. * @see iso20022.MessageDefinition#getMessageDefinitionIdentifier() * @see #getMessageDefinition() * @generated */ EReference getMessageDefinition_MessageDefinitionIdentifier(); /** * Returns the meta object for the reference list '{@link iso20022.MessageDefinition#getDerivation <em>Derivation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Derivation</em>'. * @see iso20022.MessageDefinition#getDerivation() * @see #getMessageDefinition() * @generated */ EReference getMessageDefinition_Derivation(); /** * Returns the meta object for the '{@link iso20022.MessageDefinition#BusinessAreaNameMatch(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Business Area Name Match</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Business Area Name Match</em>' operation. * @see iso20022.MessageDefinition#BusinessAreaNameMatch(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getMessageDefinition__BusinessAreaNameMatch__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.RepositoryType <em>Repository Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Repository Type</em>'. * @see iso20022.RepositoryType * @generated */ EClass getRepositoryType(); /** * Returns the meta object for class '{@link iso20022.MessageSet <em>Message Set</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Set</em>'. * @see iso20022.MessageSet * @generated */ EClass getMessageSet(); /** * Returns the meta object for the reference list '{@link iso20022.MessageSet#getGeneratedSyntax <em>Generated Syntax</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Generated Syntax</em>'. * @see iso20022.MessageSet#getGeneratedSyntax() * @see #getMessageSet() * @generated */ EReference getMessageSet_GeneratedSyntax(); /** * Returns the meta object for the reference list '{@link iso20022.MessageSet#getValidEncoding <em>Valid Encoding</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Valid Encoding</em>'. * @see iso20022.MessageSet#getValidEncoding() * @see #getMessageSet() * @generated */ EReference getMessageSet_ValidEncoding(); /** * Returns the meta object for the reference list '{@link iso20022.MessageSet#getMessageDefinition <em>Message Definition</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Message Definition</em>'. * @see iso20022.MessageSet#getMessageDefinition() * @see #getMessageSet() * @generated */ EReference getMessageSet_MessageDefinition(); /** * Returns the meta object for the '{@link iso20022.MessageSet#GeneratedSyntaxDerivation(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Generated Syntax Derivation</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Generated Syntax Derivation</em>' operation. * @see iso20022.MessageSet#GeneratedSyntaxDerivation(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getMessageSet__GeneratedSyntaxDerivation__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.Syntax <em>Syntax</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Syntax</em>'. * @see iso20022.Syntax * @generated */ EClass getSyntax(); /** * Returns the meta object for the reference list '{@link iso20022.Syntax#getPossibleEncodings <em>Possible Encodings</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Possible Encodings</em>'. * @see iso20022.Syntax#getPossibleEncodings() * @see #getSyntax() * @generated */ EReference getSyntax_PossibleEncodings(); /** * Returns the meta object for the reference list '{@link iso20022.Syntax#getGeneratedFor <em>Generated For</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Generated For</em>'. * @see iso20022.Syntax#getGeneratedFor() * @see #getSyntax() * @generated */ EReference getSyntax_GeneratedFor(); /** * Returns the meta object for the '{@link iso20022.Syntax#GeneratedForDerivation(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Generated For Derivation</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Generated For Derivation</em>' operation. * @see iso20022.Syntax#GeneratedForDerivation(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getSyntax__GeneratedForDerivation__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.Encoding <em>Encoding</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Encoding</em>'. * @see iso20022.Encoding * @generated */ EClass getEncoding(); /** * Returns the meta object for the reference list '{@link iso20022.Encoding#getMessageSet <em>Message Set</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Message Set</em>'. * @see iso20022.Encoding#getMessageSet() * @see #getEncoding() * @generated */ EReference getEncoding_MessageSet(); /** * Returns the meta object for the reference '{@link iso20022.Encoding#getSyntax <em>Syntax</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Syntax</em>'. * @see iso20022.Encoding#getSyntax() * @see #getEncoding() * @generated */ EReference getEncoding_Syntax(); /** * Returns the meta object for class '{@link iso20022.BusinessArea <em>Business Area</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Area</em>'. * @see iso20022.BusinessArea * @generated */ EClass getBusinessArea(); /** * Returns the meta object for the attribute '{@link iso20022.BusinessArea#getCode <em>Code</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Code</em>'. * @see iso20022.BusinessArea#getCode() * @see #getBusinessArea() * @generated */ EAttribute getBusinessArea_Code(); /** * Returns the meta object for the containment reference list '{@link iso20022.BusinessArea#getMessageDefinition <em>Message Definition</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Message Definition</em>'. * @see iso20022.BusinessArea#getMessageDefinition() * @see #getBusinessArea() * @generated */ EReference getBusinessArea_MessageDefinition(); /** * Returns the meta object for class '{@link iso20022.Xor <em>Xor</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Xor</em>'. * @see iso20022.Xor * @generated */ EClass getXor(); /** * Returns the meta object for the reference list '{@link iso20022.Xor#getImpactedElements <em>Impacted Elements</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Impacted Elements</em>'. * @see iso20022.Xor#getImpactedElements() * @see #getXor() * @generated */ EReference getXor_ImpactedElements(); /** * Returns the meta object for the container reference '{@link iso20022.Xor#getMessageComponent <em>Message Component</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Message Component</em>'. * @see iso20022.Xor#getMessageComponent() * @see #getXor() * @generated */ EReference getXor_MessageComponent(); /** * Returns the meta object for the reference list '{@link iso20022.Xor#getImpactedMessageBuildingBlocks <em>Impacted Message Building Blocks</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Impacted Message Building Blocks</em>'. * @see iso20022.Xor#getImpactedMessageBuildingBlocks() * @see #getXor() * @generated */ EReference getXor_ImpactedMessageBuildingBlocks(); /** * Returns the meta object for the container reference '{@link iso20022.Xor#getMessageDefinition <em>Message Definition</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Message Definition</em>'. * @see iso20022.Xor#getMessageDefinition() * @see #getXor() * @generated */ EReference getXor_MessageDefinition(); /** * Returns the meta object for class '{@link iso20022.MessageElement <em>Message Element</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Element</em>'. * @see iso20022.MessageElement * @generated */ EClass getMessageElement(); /** * Returns the meta object for the attribute '{@link iso20022.MessageElement#isIsTechnical <em>Is Technical</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Is Technical</em>'. * @see iso20022.MessageElement#isIsTechnical() * @see #getMessageElement() * @generated */ EAttribute getMessageElement_IsTechnical(); /** * Returns the meta object for the reference '{@link iso20022.MessageElement#getBusinessComponentTrace <em>Business Component Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Business Component Trace</em>'. * @see iso20022.MessageElement#getBusinessComponentTrace() * @see #getMessageElement() * @generated */ EReference getMessageElement_BusinessComponentTrace(); /** * Returns the meta object for the reference '{@link iso20022.MessageElement#getBusinessElementTrace <em>Business Element Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Business Element Trace</em>'. * @see iso20022.MessageElement#getBusinessElementTrace() * @see #getMessageElement() * @generated */ EReference getMessageElement_BusinessElementTrace(); /** * Returns the meta object for the container reference '{@link iso20022.MessageElement#getComponentContext <em>Component Context</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Component Context</em>'. * @see iso20022.MessageElement#getComponentContext() * @see #getMessageElement() * @generated */ EReference getMessageElement_ComponentContext(); /** * Returns the meta object for the attribute '{@link iso20022.MessageElement#isIsDerived <em>Is Derived</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Is Derived</em>'. * @see iso20022.MessageElement#isIsDerived() * @see #getMessageElement() * @generated */ EAttribute getMessageElement_IsDerived(); /** * Returns the meta object for the '{@link iso20022.MessageElement#NoMoreThanOneTrace(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>No More Than One Trace</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>No More Than One Trace</em>' operation. * @see iso20022.MessageElement#NoMoreThanOneTrace(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getMessageElement__NoMoreThanOneTrace__Map_DiagnosticChain(); /** * Returns the meta object for the '{@link iso20022.MessageElement#CardinalityAlignment(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Cardinality Alignment</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Cardinality Alignment</em>' operation. * @see iso20022.MessageElement#CardinalityAlignment(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getMessageElement__CardinalityAlignment__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.MessageConstruct <em>Message Construct</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Construct</em>'. * @see iso20022.MessageConstruct * @generated */ EClass getMessageConstruct(); /** * Returns the meta object for the attribute '{@link iso20022.MessageConstruct#getXmlTag <em>Xml Tag</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Xml Tag</em>'. * @see iso20022.MessageConstruct#getXmlTag() * @see #getMessageConstruct() * @generated */ EAttribute getMessageConstruct_XmlTag(); /** * Returns the meta object for the reference '{@link iso20022.MessageConstruct#getXmlMemberType <em>Xml Member Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Xml Member Type</em>'. * @see iso20022.MessageConstruct#getXmlMemberType() * @see #getMessageConstruct() * @generated */ EReference getMessageConstruct_XmlMemberType(); /** * Returns the meta object for class '{@link iso20022.Construct <em>Construct</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Construct</em>'. * @see iso20022.Construct * @generated */ EClass getConstruct(); /** * Returns the meta object for the reference '{@link iso20022.Construct#getMemberType <em>Member Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Member Type</em>'. * @see iso20022.Construct#getMemberType() * @see #getConstruct() * @generated */ EReference getConstruct_MemberType(); /** * Returns the meta object for class '{@link iso20022.MultiplicityEntity <em>Multiplicity Entity</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Multiplicity Entity</em>'. * @see iso20022.MultiplicityEntity * @generated */ EClass getMultiplicityEntity(); /** * Returns the meta object for the attribute '{@link iso20022.MultiplicityEntity#getMaxOccurs <em>Max Occurs</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Max Occurs</em>'. * @see iso20022.MultiplicityEntity#getMaxOccurs() * @see #getMultiplicityEntity() * @generated */ EAttribute getMultiplicityEntity_MaxOccurs(); /** * Returns the meta object for the attribute '{@link iso20022.MultiplicityEntity#getMinOccurs <em>Min Occurs</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Min Occurs</em>'. * @see iso20022.MultiplicityEntity#getMinOccurs() * @see #getMultiplicityEntity() * @generated */ EAttribute getMultiplicityEntity_MinOccurs(); /** * Returns the meta object for class '{@link iso20022.LogicalType <em>Logical Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Logical Type</em>'. * @see iso20022.LogicalType * @generated */ EClass getLogicalType(); /** * Returns the meta object for class '{@link iso20022.MessageConcept <em>Message Concept</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Concept</em>'. * @see iso20022.MessageConcept * @generated */ EClass getMessageConcept(); /** * Returns the meta object for class '{@link iso20022.BusinessComponent <em>Business Component</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Component</em>'. * @see iso20022.BusinessComponent * @generated */ EClass getBusinessComponent(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessComponent#getSubType <em>Sub Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Sub Type</em>'. * @see iso20022.BusinessComponent#getSubType() * @see #getBusinessComponent() * @generated */ EReference getBusinessComponent_SubType(); /** * Returns the meta object for the reference '{@link iso20022.BusinessComponent#getSuperType <em>Super Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Super Type</em>'. * @see iso20022.BusinessComponent#getSuperType() * @see #getBusinessComponent() * @generated */ EReference getBusinessComponent_SuperType(); /** * Returns the meta object for the containment reference list '{@link iso20022.BusinessComponent#getElement <em>Element</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Element</em>'. * @see iso20022.BusinessComponent#getElement() * @see #getBusinessComponent() * @generated */ EReference getBusinessComponent_Element(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessComponent#getDerivationComponent <em>Derivation Component</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Derivation Component</em>'. * @see iso20022.BusinessComponent#getDerivationComponent() * @see #getBusinessComponent() * @generated */ EReference getBusinessComponent_DerivationComponent(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessComponent#getAssociationDomain <em>Association Domain</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Association Domain</em>'. * @see iso20022.BusinessComponent#getAssociationDomain() * @see #getBusinessComponent() * @generated */ EReference getBusinessComponent_AssociationDomain(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessComponent#getDerivationElement <em>Derivation Element</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Derivation Element</em>'. * @see iso20022.BusinessComponent#getDerivationElement() * @see #getBusinessComponent() * @generated */ EReference getBusinessComponent_DerivationElement(); /** * Returns the meta object for the '{@link iso20022.BusinessComponent#BusinessElementsHaveUniqueNames(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Business Elements Have Unique Names</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Business Elements Have Unique Names</em>' operation. * @see iso20022.BusinessComponent#BusinessElementsHaveUniqueNames(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getBusinessComponent__BusinessElementsHaveUniqueNames__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.BusinessElementType <em>Business Element Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Element Type</em>'. * @see iso20022.BusinessElementType * @generated */ EClass getBusinessElementType(); /** * Returns the meta object for class '{@link iso20022.BusinessConcept <em>Business Concept</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Concept</em>'. * @see iso20022.BusinessConcept * @generated */ EClass getBusinessConcept(); /** * Returns the meta object for class '{@link iso20022.BusinessElement <em>Business Element</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Element</em>'. * @see iso20022.BusinessElement * @generated */ EClass getBusinessElement(); /** * Returns the meta object for the attribute '{@link iso20022.BusinessElement#isIsDerived <em>Is Derived</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Is Derived</em>'. * @see iso20022.BusinessElement#isIsDerived() * @see #getBusinessElement() * @generated */ EAttribute getBusinessElement_IsDerived(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessElement#getDerivation <em>Derivation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Derivation</em>'. * @see iso20022.BusinessElement#getDerivation() * @see #getBusinessElement() * @generated */ EReference getBusinessElement_Derivation(); /** * Returns the meta object for the reference '{@link iso20022.BusinessElement#getBusinessElementType <em>Business Element Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Business Element Type</em>'. * @see iso20022.BusinessElement#getBusinessElementType() * @see #getBusinessElement() * @generated */ EReference getBusinessElement_BusinessElementType(); /** * Returns the meta object for the container reference '{@link iso20022.BusinessElement#getElementContext <em>Element Context</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Element Context</em>'. * @see iso20022.BusinessElement#getElementContext() * @see #getBusinessElement() * @generated */ EReference getBusinessElement_ElementContext(); /** * Returns the meta object for class '{@link iso20022.MessageComponentType <em>Message Component Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Component Type</em>'. * @see iso20022.MessageComponentType * @generated */ EClass getMessageComponentType(); /** * Returns the meta object for the reference list '{@link iso20022.MessageComponentType#getMessageBuildingBlock <em>Message Building Block</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Message Building Block</em>'. * @see iso20022.MessageComponentType#getMessageBuildingBlock() * @see #getMessageComponentType() * @generated */ EReference getMessageComponentType_MessageBuildingBlock(); /** * Returns the meta object for the attribute '{@link iso20022.MessageComponentType#isIsTechnical <em>Is Technical</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Is Technical</em>'. * @see iso20022.MessageComponentType#isIsTechnical() * @see #getMessageComponentType() * @generated */ EAttribute getMessageComponentType_IsTechnical(); /** * Returns the meta object for the reference '{@link iso20022.MessageComponentType#getTrace <em>Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Trace</em>'. * @see iso20022.MessageComponentType#getTrace() * @see #getMessageComponentType() * @generated */ EReference getMessageComponentType_Trace(); /** * Returns the meta object for class '{@link iso20022.MessageBuildingBlock <em>Message Building Block</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Building Block</em>'. * @see iso20022.MessageBuildingBlock * @generated */ EClass getMessageBuildingBlock(); /** * Returns the meta object for the reference '{@link iso20022.MessageBuildingBlock#getSimpleType <em>Simple Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Simple Type</em>'. * @see iso20022.MessageBuildingBlock#getSimpleType() * @see #getMessageBuildingBlock() * @generated */ EReference getMessageBuildingBlock_SimpleType(); /** * Returns the meta object for the reference '{@link iso20022.MessageBuildingBlock#getComplexType <em>Complex Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Complex Type</em>'. * @see iso20022.MessageBuildingBlock#getComplexType() * @see #getMessageBuildingBlock() * @generated */ EReference getMessageBuildingBlock_ComplexType(); /** * Returns the meta object for the '{@link iso20022.MessageBuildingBlock#MessageBuildingBlockHasExactlyOneType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Message Building Block Has Exactly One Type</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Message Building Block Has Exactly One Type</em>' operation. * @see iso20022.MessageBuildingBlock#MessageBuildingBlockHasExactlyOneType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getMessageBuildingBlock__MessageBuildingBlockHasExactlyOneType__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.DataType <em>Data Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Data Type</em>'. * @see iso20022.DataType * @generated */ EClass getDataType(); /** * Returns the meta object for class '{@link iso20022.BusinessAssociationEnd <em>Business Association End</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Association End</em>'. * @see iso20022.BusinessAssociationEnd * @generated */ EClass getBusinessAssociationEnd(); /** * Returns the meta object for the reference '{@link iso20022.BusinessAssociationEnd#getOpposite <em>Opposite</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Opposite</em>'. * @see iso20022.BusinessAssociationEnd#getOpposite() * @see #getBusinessAssociationEnd() * @generated */ EReference getBusinessAssociationEnd_Opposite(); /** * Returns the meta object for the attribute '{@link iso20022.BusinessAssociationEnd#getAggregation <em>Aggregation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Aggregation</em>'. * @see iso20022.BusinessAssociationEnd#getAggregation() * @see #getBusinessAssociationEnd() * @generated */ EAttribute getBusinessAssociationEnd_Aggregation(); /** * Returns the meta object for the reference '{@link iso20022.BusinessAssociationEnd#getType <em>Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Type</em>'. * @see iso20022.BusinessAssociationEnd#getType() * @see #getBusinessAssociationEnd() * @generated */ EReference getBusinessAssociationEnd_Type(); /** * Returns the meta object for the '{@link iso20022.BusinessAssociationEnd#AtMostOneAggregatedEnd(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>At Most One Aggregated End</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>At Most One Aggregated End</em>' operation. * @see iso20022.BusinessAssociationEnd#AtMostOneAggregatedEnd(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getBusinessAssociationEnd__AtMostOneAggregatedEnd__Map_DiagnosticChain(); /** * Returns the meta object for the '{@link iso20022.BusinessAssociationEnd#ContextConsistentWithType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Context Consistent With Type</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Context Consistent With Type</em>' operation. * @see iso20022.BusinessAssociationEnd#ContextConsistentWithType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getBusinessAssociationEnd__ContextConsistentWithType__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.MessageElementContainer <em>Message Element Container</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Element Container</em>'. * @see iso20022.MessageElementContainer * @generated */ EClass getMessageElementContainer(); /** * Returns the meta object for the containment reference list '{@link iso20022.MessageElementContainer#getMessageElement <em>Message Element</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Message Element</em>'. * @see iso20022.MessageElementContainer#getMessageElement() * @see #getMessageElementContainer() * @generated */ EReference getMessageElementContainer_MessageElement(); /** * Returns the meta object for the '{@link iso20022.MessageElementContainer#MessageElementsHaveUniqueNames(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Message Elements Have Unique Names</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Message Elements Have Unique Names</em>' operation. * @see iso20022.MessageElementContainer#MessageElementsHaveUniqueNames(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getMessageElementContainer__MessageElementsHaveUniqueNames__Map_DiagnosticChain(); /** * Returns the meta object for the '{@link iso20022.MessageElementContainer#technicalElement(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Technical Element</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Technical Element</em>' operation. * @see iso20022.MessageElementContainer#technicalElement(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getMessageElementContainer__TechnicalElement__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.MessageComponent <em>Message Component</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Component</em>'. * @see iso20022.MessageComponent * @generated */ EClass getMessageComponent(); /** * Returns the meta object for the containment reference list '{@link iso20022.MessageComponent#getXors <em>Xors</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Xors</em>'. * @see iso20022.MessageComponent#getXors() * @see #getMessageComponent() * @generated */ EReference getMessageComponent_Xors(); /** * Returns the meta object for class '{@link iso20022.MessageChoreography <em>Message Choreography</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Choreography</em>'. * @see iso20022.MessageChoreography * @generated */ EClass getMessageChoreography(); /** * Returns the meta object for the reference '{@link iso20022.MessageChoreography#getBusinessTransactionTrace <em>Business Transaction Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Business Transaction Trace</em>'. * @see iso20022.MessageChoreography#getBusinessTransactionTrace() * @see #getMessageChoreography() * @generated */ EReference getMessageChoreography_BusinessTransactionTrace(); /** * Returns the meta object for the reference list '{@link iso20022.MessageChoreography#getMessageDefinition <em>Message Definition</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Message Definition</em>'. * @see iso20022.MessageChoreography#getMessageDefinition() * @see #getMessageChoreography() * @generated */ EReference getMessageChoreography_MessageDefinition(); /** * Returns the meta object for class '{@link iso20022.BusinessTransaction <em>Business Transaction</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Transaction</em>'. * @see iso20022.BusinessTransaction * @generated */ EClass getBusinessTransaction(); /** * Returns the meta object for the reference '{@link iso20022.BusinessTransaction#getBusinessProcessTrace <em>Business Process Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Business Process Trace</em>'. * @see iso20022.BusinessTransaction#getBusinessProcessTrace() * @see #getBusinessTransaction() * @generated */ EReference getBusinessTransaction_BusinessProcessTrace(); /** * Returns the meta object for the containment reference list '{@link iso20022.BusinessTransaction#getParticipant <em>Participant</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Participant</em>'. * @see iso20022.BusinessTransaction#getParticipant() * @see #getBusinessTransaction() * @generated */ EReference getBusinessTransaction_Participant(); /** * Returns the meta object for the containment reference list '{@link iso20022.BusinessTransaction#getTransmission <em>Transmission</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Transmission</em>'. * @see iso20022.BusinessTransaction#getTransmission() * @see #getBusinessTransaction() * @generated */ EReference getBusinessTransaction_Transmission(); /** * Returns the meta object for the reference '{@link iso20022.BusinessTransaction#getMessageTransportMode <em>Message Transport Mode</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Message Transport Mode</em>'. * @see iso20022.BusinessTransaction#getMessageTransportMode() * @see #getBusinessTransaction() * @generated */ EReference getBusinessTransaction_MessageTransportMode(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessTransaction#getSubTransaction <em>Sub Transaction</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Sub Transaction</em>'. * @see iso20022.BusinessTransaction#getSubTransaction() * @see #getBusinessTransaction() * @generated */ EReference getBusinessTransaction_SubTransaction(); /** * Returns the meta object for the reference '{@link iso20022.BusinessTransaction#getParentTransaction <em>Parent Transaction</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Parent Transaction</em>'. * @see iso20022.BusinessTransaction#getParentTransaction() * @see #getBusinessTransaction() * @generated */ EReference getBusinessTransaction_ParentTransaction(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessTransaction#getTrace <em>Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Trace</em>'. * @see iso20022.BusinessTransaction#getTrace() * @see #getBusinessTransaction() * @generated */ EReference getBusinessTransaction_Trace(); /** * Returns the meta object for the '{@link iso20022.BusinessTransaction#MessageTransmissionsHaveUniqueNames(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Message Transmissions Have Unique Names</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Message Transmissions Have Unique Names</em>' operation. * @see iso20022.BusinessTransaction#MessageTransmissionsHaveUniqueNames(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getBusinessTransaction__MessageTransmissionsHaveUniqueNames__Map_DiagnosticChain(); /** * Returns the meta object for the '{@link iso20022.BusinessTransaction#ParticipantsHaveUniqueNames(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Participants Have Unique Names</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Participants Have Unique Names</em>' operation. * @see iso20022.BusinessTransaction#ParticipantsHaveUniqueNames(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getBusinessTransaction__ParticipantsHaveUniqueNames__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.BusinessProcess <em>Business Process</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Process</em>'. * @see iso20022.BusinessProcess * @generated */ EClass getBusinessProcess(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessProcess#getExtender <em>Extender</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Extender</em>'. * @see iso20022.BusinessProcess#getExtender() * @see #getBusinessProcess() * @generated */ EReference getBusinessProcess_Extender(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessProcess#getExtended <em>Extended</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Extended</em>'. * @see iso20022.BusinessProcess#getExtended() * @see #getBusinessProcess() * @generated */ EReference getBusinessProcess_Extended(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessProcess#getIncluded <em>Included</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Included</em>'. * @see iso20022.BusinessProcess#getIncluded() * @see #getBusinessProcess() * @generated */ EReference getBusinessProcess_Included(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessProcess#getIncluder <em>Includer</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Includer</em>'. * @see iso20022.BusinessProcess#getIncluder() * @see #getBusinessProcess() * @generated */ EReference getBusinessProcess_Includer(); /** * Returns the meta object for the containment reference list '{@link iso20022.BusinessProcess#getBusinessRole <em>Business Role</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Business Role</em>'. * @see iso20022.BusinessProcess#getBusinessRole() * @see #getBusinessProcess() * @generated */ EReference getBusinessProcess_BusinessRole(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessProcess#getBusinessProcessTrace <em>Business Process Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Business Process Trace</em>'. * @see iso20022.BusinessProcess#getBusinessProcessTrace() * @see #getBusinessProcess() * @generated */ EReference getBusinessProcess_BusinessProcessTrace(); /** * Returns the meta object for class '{@link iso20022.BusinessRole <em>Business Role</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Role</em>'. * @see iso20022.BusinessRole * @generated */ EClass getBusinessRole(); /** * Returns the meta object for the reference list '{@link iso20022.BusinessRole#getBusinessRoleTrace <em>Business Role Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Business Role Trace</em>'. * @see iso20022.BusinessRole#getBusinessRoleTrace() * @see #getBusinessRole() * @generated */ EReference getBusinessRole_BusinessRoleTrace(); /** * Returns the meta object for the container reference '{@link iso20022.BusinessRole#getBusinessProcess <em>Business Process</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Business Process</em>'. * @see iso20022.BusinessRole#getBusinessProcess() * @see #getBusinessRole() * @generated */ EReference getBusinessRole_BusinessProcess(); /** * Returns the meta object for class '{@link iso20022.Participant <em>Participant</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Participant</em>'. * @see iso20022.Participant * @generated */ EClass getParticipant(); /** * Returns the meta object for the container reference '{@link iso20022.Participant#getBusinessTransaction <em>Business Transaction</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Business Transaction</em>'. * @see iso20022.Participant#getBusinessTransaction() * @see #getParticipant() * @generated */ EReference getParticipant_BusinessTransaction(); /** * Returns the meta object for the reference list '{@link iso20022.Participant#getReceives <em>Receives</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Receives</em>'. * @see iso20022.Participant#getReceives() * @see #getParticipant() * @generated */ EReference getParticipant_Receives(); /** * Returns the meta object for the reference list '{@link iso20022.Participant#getSends <em>Sends</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Sends</em>'. * @see iso20022.Participant#getSends() * @see #getParticipant() * @generated */ EReference getParticipant_Sends(); /** * Returns the meta object for the reference '{@link iso20022.Participant#getBusinessRoleTrace <em>Business Role Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Business Role Trace</em>'. * @see iso20022.Participant#getBusinessRoleTrace() * @see #getParticipant() * @generated */ EReference getParticipant_BusinessRoleTrace(); /** * Returns the meta object for class '{@link iso20022.Receive <em>Receive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Receive</em>'. * @see iso20022.Receive * @generated */ EClass getReceive(); /** * Returns the meta object for the container reference '{@link iso20022.Receive#getMessageTransmission <em>Message Transmission</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Message Transmission</em>'. * @see iso20022.Receive#getMessageTransmission() * @see #getReceive() * @generated */ EReference getReceive_MessageTransmission(); /** * Returns the meta object for the reference '{@link iso20022.Receive#getReceiver <em>Receiver</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Receiver</em>'. * @see iso20022.Receive#getReceiver() * @see #getReceive() * @generated */ EReference getReceive_Receiver(); /** * Returns the meta object for class '{@link iso20022.MessageTransmission <em>Message Transmission</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Transmission</em>'. * @see iso20022.MessageTransmission * @generated */ EClass getMessageTransmission(); /** * Returns the meta object for the container reference '{@link iso20022.MessageTransmission#getBusinessTransaction <em>Business Transaction</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Business Transaction</em>'. * @see iso20022.MessageTransmission#getBusinessTransaction() * @see #getMessageTransmission() * @generated */ EReference getMessageTransmission_BusinessTransaction(); /** * Returns the meta object for the reference list '{@link iso20022.MessageTransmission#getDerivation <em>Derivation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Derivation</em>'. * @see iso20022.MessageTransmission#getDerivation() * @see #getMessageTransmission() * @generated */ EReference getMessageTransmission_Derivation(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransmission#getMessageTypeDescription <em>Message Type Description</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Type Description</em>'. * @see iso20022.MessageTransmission#getMessageTypeDescription() * @see #getMessageTransmission() * @generated */ EAttribute getMessageTransmission_MessageTypeDescription(); /** * Returns the meta object for the containment reference '{@link iso20022.MessageTransmission#getSend <em>Send</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference '<em>Send</em>'. * @see iso20022.MessageTransmission#getSend() * @see #getMessageTransmission() * @generated */ EReference getMessageTransmission_Send(); /** * Returns the meta object for the containment reference list '{@link iso20022.MessageTransmission#getReceive <em>Receive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Receive</em>'. * @see iso20022.MessageTransmission#getReceive() * @see #getMessageTransmission() * @generated */ EReference getMessageTransmission_Receive(); /** * Returns the meta object for class '{@link iso20022.Send <em>Send</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Send</em>'. * @see iso20022.Send * @generated */ EClass getSend(); /** * Returns the meta object for the reference '{@link iso20022.Send#getSender <em>Sender</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Sender</em>'. * @see iso20022.Send#getSender() * @see #getSend() * @generated */ EReference getSend_Sender(); /** * Returns the meta object for the container reference '{@link iso20022.Send#getMessageTransmission <em>Message Transmission</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Message Transmission</em>'. * @see iso20022.Send#getMessageTransmission() * @see #getSend() * @generated */ EReference getSend_MessageTransmission(); /** * Returns the meta object for class '{@link iso20022.MessageTransportMode <em>Message Transport Mode</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Transport Mode</em>'. * @see iso20022.MessageTransportMode * @generated */ EClass getMessageTransportMode(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getBoundedCommunicationDelay <em>Bounded Communication Delay</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Bounded Communication Delay</em>'. * @see iso20022.MessageTransportMode#getBoundedCommunicationDelay() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_BoundedCommunicationDelay(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMaximumClockVariation <em>Maximum Clock Variation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Maximum Clock Variation</em>'. * @see iso20022.MessageTransportMode#getMaximumClockVariation() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MaximumClockVariation(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMaximumMessageSize <em>Maximum Message Size</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Maximum Message Size</em>'. * @see iso20022.MessageTransportMode#getMaximumMessageSize() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MaximumMessageSize(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMessageDeliveryWindow <em>Message Delivery Window</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Delivery Window</em>'. * @see iso20022.MessageTransportMode#getMessageDeliveryWindow() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MessageDeliveryWindow(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMessageSendingWindow <em>Message Sending Window</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Sending Window</em>'. * @see iso20022.MessageTransportMode#getMessageSendingWindow() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MessageSendingWindow(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getDeliveryAssurance <em>Delivery Assurance</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Delivery Assurance</em>'. * @see iso20022.MessageTransportMode#getDeliveryAssurance() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_DeliveryAssurance(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getDurability <em>Durability</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Durability</em>'. * @see iso20022.MessageTransportMode#getDurability() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_Durability(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMessageCasting <em>Message Casting</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Casting</em>'. * @see iso20022.MessageTransportMode#getMessageCasting() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MessageCasting(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMessageDeliveryOrder <em>Message Delivery Order</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Delivery Order</em>'. * @see iso20022.MessageTransportMode#getMessageDeliveryOrder() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MessageDeliveryOrder(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMessageValidationLevel <em>Message Validation Level</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Validation Level</em>'. * @see iso20022.MessageTransportMode#getMessageValidationLevel() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MessageValidationLevel(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMessageValidationOnOff <em>Message Validation On Off</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Validation On Off</em>'. * @see iso20022.MessageTransportMode#getMessageValidationOnOff() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MessageValidationOnOff(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getMessageValidationResults <em>Message Validation Results</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Validation Results</em>'. * @see iso20022.MessageTransportMode#getMessageValidationResults() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_MessageValidationResults(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getReceiverAsynchronicity <em>Receiver Asynchronicity</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Receiver Asynchronicity</em>'. * @see iso20022.MessageTransportMode#getReceiverAsynchronicity() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_ReceiverAsynchronicity(); /** * Returns the meta object for the attribute '{@link iso20022.MessageTransportMode#getSenderAsynchronicity <em>Sender Asynchronicity</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Sender Asynchronicity</em>'. * @see iso20022.MessageTransportMode#getSenderAsynchronicity() * @see #getMessageTransportMode() * @generated */ EAttribute getMessageTransportMode_SenderAsynchronicity(); /** * Returns the meta object for the reference list '{@link iso20022.MessageTransportMode#getBusinessTransaction <em>Business Transaction</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Business Transaction</em>'. * @see iso20022.MessageTransportMode#getBusinessTransaction() * @see #getMessageTransportMode() * @generated */ EReference getMessageTransportMode_BusinessTransaction(); /** * Returns the meta object for class '{@link iso20022.MessageDefinitionIdentifier <em>Message Definition Identifier</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Definition Identifier</em>'. * @see iso20022.MessageDefinitionIdentifier * @generated */ EClass getMessageDefinitionIdentifier(); /** * Returns the meta object for the attribute '{@link iso20022.MessageDefinitionIdentifier#getBusinessArea <em>Business Area</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Business Area</em>'. * @see iso20022.MessageDefinitionIdentifier#getBusinessArea() * @see #getMessageDefinitionIdentifier() * @generated */ EAttribute getMessageDefinitionIdentifier_BusinessArea(); /** * Returns the meta object for the attribute '{@link iso20022.MessageDefinitionIdentifier#getMessageFunctionality <em>Message Functionality</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Message Functionality</em>'. * @see iso20022.MessageDefinitionIdentifier#getMessageFunctionality() * @see #getMessageDefinitionIdentifier() * @generated */ EAttribute getMessageDefinitionIdentifier_MessageFunctionality(); /** * Returns the meta object for the attribute '{@link iso20022.MessageDefinitionIdentifier#getFlavour <em>Flavour</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Flavour</em>'. * @see iso20022.MessageDefinitionIdentifier#getFlavour() * @see #getMessageDefinitionIdentifier() * @generated */ EAttribute getMessageDefinitionIdentifier_Flavour(); /** * Returns the meta object for the attribute '{@link iso20022.MessageDefinitionIdentifier#getVersion <em>Version</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Version</em>'. * @see iso20022.MessageDefinitionIdentifier#getVersion() * @see #getMessageDefinitionIdentifier() * @generated */ EAttribute getMessageDefinitionIdentifier_Version(); /** * Returns the meta object for class '{@link iso20022.Conversation <em>Conversation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Conversation</em>'. * @see iso20022.Conversation * @generated */ EClass getConversation(); /** * Returns the meta object for class '{@link iso20022.MessageAssociationEnd <em>Message Association End</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Association End</em>'. * @see iso20022.MessageAssociationEnd * @generated */ EClass getMessageAssociationEnd(); /** * Returns the meta object for the attribute '{@link iso20022.MessageAssociationEnd#isIsComposite <em>Is Composite</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Is Composite</em>'. * @see iso20022.MessageAssociationEnd#isIsComposite() * @see #getMessageAssociationEnd() * @generated */ EAttribute getMessageAssociationEnd_IsComposite(); /** * Returns the meta object for the reference '{@link iso20022.MessageAssociationEnd#getType <em>Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Type</em>'. * @see iso20022.MessageAssociationEnd#getType() * @see #getMessageAssociationEnd() * @generated */ EReference getMessageAssociationEnd_Type(); /** * Returns the meta object for class '{@link iso20022.MessageAttribute <em>Message Attribute</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Message Attribute</em>'. * @see iso20022.MessageAttribute * @generated */ EClass getMessageAttribute(); /** * Returns the meta object for the reference '{@link iso20022.MessageAttribute#getSimpleType <em>Simple Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Simple Type</em>'. * @see iso20022.MessageAttribute#getSimpleType() * @see #getMessageAttribute() * @generated */ EReference getMessageAttribute_SimpleType(); /** * Returns the meta object for the reference '{@link iso20022.MessageAttribute#getComplexType <em>Complex Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Complex Type</em>'. * @see iso20022.MessageAttribute#getComplexType() * @see #getMessageAttribute() * @generated */ EReference getMessageAttribute_ComplexType(); /** * Returns the meta object for the '{@link iso20022.MessageAttribute#MessageAttributeHasExactlyOneType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Message Attribute Has Exactly One Type</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Message Attribute Has Exactly One Type</em>' operation. * @see iso20022.MessageAttribute#MessageAttributeHasExactlyOneType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getMessageAttribute__MessageAttributeHasExactlyOneType__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.BusinessAttribute <em>Business Attribute</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Business Attribute</em>'. * @see iso20022.BusinessAttribute * @generated */ EClass getBusinessAttribute(); /** * Returns the meta object for the reference '{@link iso20022.BusinessAttribute#getSimpleType <em>Simple Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Simple Type</em>'. * @see iso20022.BusinessAttribute#getSimpleType() * @see #getBusinessAttribute() * @generated */ EReference getBusinessAttribute_SimpleType(); /** * Returns the meta object for the reference '{@link iso20022.BusinessAttribute#getComplexType <em>Complex Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Complex Type</em>'. * @see iso20022.BusinessAttribute#getComplexType() * @see #getBusinessAttribute() * @generated */ EReference getBusinessAttribute_ComplexType(); /** * Returns the meta object for the '{@link iso20022.BusinessAttribute#BusinessAttributeHasExactlyOneType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>Business Attribute Has Exactly One Type</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>Business Attribute Has Exactly One Type</em>' operation. * @see iso20022.BusinessAttribute#BusinessAttributeHasExactlyOneType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getBusinessAttribute__BusinessAttributeHasExactlyOneType__Map_DiagnosticChain(); /** * Returns the meta object for the '{@link iso20022.BusinessAttribute#NoDerivingCodeSetType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>No Deriving Code Set Type</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>No Deriving Code Set Type</em>' operation. * @see iso20022.BusinessAttribute#NoDerivingCodeSetType(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getBusinessAttribute__NoDerivingCodeSetType__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.Text <em>Text</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Text</em>'. * @see iso20022.Text * @generated */ EClass getText(); /** * Returns the meta object for class '{@link iso20022.String <em>String</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>String</em>'. * @see iso20022.String * @generated */ EClass getString(); /** * Returns the meta object for the attribute '{@link iso20022.String#getMinLength <em>Min Length</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Min Length</em>'. * @see iso20022.String#getMinLength() * @see #getString() * @generated */ EAttribute getString_MinLength(); /** * Returns the meta object for the attribute '{@link iso20022.String#getMaxLength <em>Max Length</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Max Length</em>'. * @see iso20022.String#getMaxLength() * @see #getString() * @generated */ EAttribute getString_MaxLength(); /** * Returns the meta object for the attribute '{@link iso20022.String#getLength <em>Length</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Length</em>'. * @see iso20022.String#getLength() * @see #getString() * @generated */ EAttribute getString_Length(); /** * Returns the meta object for the attribute '{@link iso20022.String#getPattern <em>Pattern</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Pattern</em>'. * @see iso20022.String#getPattern() * @see #getString() * @generated */ EAttribute getString_Pattern(); /** * Returns the meta object for class '{@link iso20022.IdentifierSet <em>Identifier Set</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Identifier Set</em>'. * @see iso20022.IdentifierSet * @generated */ EClass getIdentifierSet(); /** * Returns the meta object for the attribute '{@link iso20022.IdentifierSet#getIdentificationScheme <em>Identification Scheme</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Identification Scheme</em>'. * @see iso20022.IdentifierSet#getIdentificationScheme() * @see #getIdentifierSet() * @generated */ EAttribute getIdentifierSet_IdentificationScheme(); /** * Returns the meta object for class '{@link iso20022.Indicator <em>Indicator</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Indicator</em>'. * @see iso20022.Indicator * @generated */ EClass getIndicator(); /** * Returns the meta object for the attribute '{@link iso20022.Indicator#getMeaningWhenTrue <em>Meaning When True</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Meaning When True</em>'. * @see iso20022.Indicator#getMeaningWhenTrue() * @see #getIndicator() * @generated */ EAttribute getIndicator_MeaningWhenTrue(); /** * Returns the meta object for the attribute '{@link iso20022.Indicator#getMeaningWhenFalse <em>Meaning When False</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Meaning When False</em>'. * @see iso20022.Indicator#getMeaningWhenFalse() * @see #getIndicator() * @generated */ EAttribute getIndicator_MeaningWhenFalse(); /** * Returns the meta object for class '{@link iso20022.Boolean <em>Boolean</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Boolean</em>'. * @see iso20022.Boolean * @generated */ EClass getBoolean(); /** * Returns the meta object for the attribute '{@link iso20022.Boolean#getPattern <em>Pattern</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Pattern</em>'. * @see iso20022.Boolean#getPattern() * @see #getBoolean() * @generated */ EAttribute getBoolean_Pattern(); /** * Returns the meta object for class '{@link iso20022.Rate <em>Rate</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Rate</em>'. * @see iso20022.Rate * @generated */ EClass getRate(); /** * Returns the meta object for the attribute '{@link iso20022.Rate#getBaseValue <em>Base Value</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Base Value</em>'. * @see iso20022.Rate#getBaseValue() * @see #getRate() * @generated */ EAttribute getRate_BaseValue(); /** * Returns the meta object for the attribute '{@link iso20022.Rate#getBaseUnitCode <em>Base Unit Code</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Base Unit Code</em>'. * @see iso20022.Rate#getBaseUnitCode() * @see #getRate() * @generated */ EAttribute getRate_BaseUnitCode(); /** * Returns the meta object for class '{@link iso20022.Decimal <em>Decimal</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Decimal</em>'. * @see iso20022.Decimal * @generated */ EClass getDecimal(); /** * Returns the meta object for the attribute '{@link iso20022.Decimal#getMinInclusive <em>Min Inclusive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Min Inclusive</em>'. * @see iso20022.Decimal#getMinInclusive() * @see #getDecimal() * @generated */ EAttribute getDecimal_MinInclusive(); /** * Returns the meta object for the attribute '{@link iso20022.Decimal#getMinExclusive <em>Min Exclusive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Min Exclusive</em>'. * @see iso20022.Decimal#getMinExclusive() * @see #getDecimal() * @generated */ EAttribute getDecimal_MinExclusive(); /** * Returns the meta object for the attribute '{@link iso20022.Decimal#getMaxInclusive <em>Max Inclusive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Max Inclusive</em>'. * @see iso20022.Decimal#getMaxInclusive() * @see #getDecimal() * @generated */ EAttribute getDecimal_MaxInclusive(); /** * Returns the meta object for the attribute '{@link iso20022.Decimal#getMaxExclusive <em>Max Exclusive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Max Exclusive</em>'. * @see iso20022.Decimal#getMaxExclusive() * @see #getDecimal() * @generated */ EAttribute getDecimal_MaxExclusive(); /** * Returns the meta object for the attribute '{@link iso20022.Decimal#getTotalDigits <em>Total Digits</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Total Digits</em>'. * @see iso20022.Decimal#getTotalDigits() * @see #getDecimal() * @generated */ EAttribute getDecimal_TotalDigits(); /** * Returns the meta object for the attribute '{@link iso20022.Decimal#getFractionDigits <em>Fraction Digits</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Fraction Digits</em>'. * @see iso20022.Decimal#getFractionDigits() * @see #getDecimal() * @generated */ EAttribute getDecimal_FractionDigits(); /** * Returns the meta object for the attribute '{@link iso20022.Decimal#getPattern <em>Pattern</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Pattern</em>'. * @see iso20022.Decimal#getPattern() * @see #getDecimal() * @generated */ EAttribute getDecimal_Pattern(); /** * Returns the meta object for class '{@link iso20022.ExternalSchema <em>External Schema</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>External Schema</em>'. * @see iso20022.ExternalSchema * @generated */ EClass getExternalSchema(); /** * Returns the meta object for the attribute list '{@link iso20022.ExternalSchema#getNamespaceList <em>Namespace List</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute list '<em>Namespace List</em>'. * @see iso20022.ExternalSchema#getNamespaceList() * @see #getExternalSchema() * @generated */ EAttribute getExternalSchema_NamespaceList(); /** * Returns the meta object for the attribute '{@link iso20022.ExternalSchema#getProcessContent <em>Process Content</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Process Content</em>'. * @see iso20022.ExternalSchema#getProcessContent() * @see #getExternalSchema() * @generated */ EAttribute getExternalSchema_ProcessContent(); /** * Returns the meta object for class '{@link iso20022.Quantity <em>Quantity</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Quantity</em>'. * @see iso20022.Quantity * @generated */ EClass getQuantity(); /** * Returns the meta object for the attribute '{@link iso20022.Quantity#getUnitCode <em>Unit Code</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Unit Code</em>'. * @see iso20022.Quantity#getUnitCode() * @see #getQuantity() * @generated */ EAttribute getQuantity_UnitCode(); /** * Returns the meta object for class '{@link iso20022.Code <em>Code</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Code</em>'. * @see iso20022.Code * @generated */ EClass getCode(); /** * Returns the meta object for the attribute '{@link iso20022.Code#getCodeName <em>Code Name</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Code Name</em>'. * @see iso20022.Code#getCodeName() * @see #getCode() * @generated */ EAttribute getCode_CodeName(); /** * Returns the meta object for the container reference '{@link iso20022.Code#getOwner <em>Owner</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the container reference '<em>Owner</em>'. * @see iso20022.Code#getOwner() * @see #getCode() * @generated */ EReference getCode_Owner(); /** * Returns the meta object for class '{@link iso20022.CodeSet <em>Code Set</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Code Set</em>'. * @see iso20022.CodeSet * @generated */ EClass getCodeSet(); /** * Returns the meta object for the reference '{@link iso20022.CodeSet#getTrace <em>Trace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Trace</em>'. * @see iso20022.CodeSet#getTrace() * @see #getCodeSet() * @generated */ EReference getCodeSet_Trace(); /** * Returns the meta object for the reference list '{@link iso20022.CodeSet#getDerivation <em>Derivation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>Derivation</em>'. * @see iso20022.CodeSet#getDerivation() * @see #getCodeSet() * @generated */ EReference getCodeSet_Derivation(); /** * Returns the meta object for the attribute '{@link iso20022.CodeSet#getIdentificationScheme <em>Identification Scheme</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Identification Scheme</em>'. * @see iso20022.CodeSet#getIdentificationScheme() * @see #getCodeSet() * @generated */ EAttribute getCodeSet_IdentificationScheme(); /** * Returns the meta object for the containment reference list '{@link iso20022.CodeSet#getCode <em>Code</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the containment reference list '<em>Code</em>'. * @see iso20022.CodeSet#getCode() * @see #getCodeSet() * @generated */ EReference getCodeSet_Code(); /** * Returns the meta object for class '{@link iso20022.Amount <em>Amount</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Amount</em>'. * @see iso20022.Amount * @generated */ EClass getAmount(); /** * Returns the meta object for the reference '{@link iso20022.Amount#getCurrencyIdentifierSet <em>Currency Identifier Set</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference '<em>Currency Identifier Set</em>'. * @see iso20022.Amount#getCurrencyIdentifierSet() * @see #getAmount() * @generated */ EReference getAmount_CurrencyIdentifierSet(); /** * Returns the meta object for class '{@link iso20022.ChoiceComponent <em>Choice Component</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Choice Component</em>'. * @see iso20022.ChoiceComponent * @generated */ EClass getChoiceComponent(); /** * Returns the meta object for the '{@link iso20022.ChoiceComponent#AtLeastOneProperty(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) <em>At Least One Property</em>}' operation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the '<em>At Least One Property</em>' operation. * @see iso20022.ChoiceComponent#AtLeastOneProperty(java.util.Map, org.eclipse.emf.common.util.DiagnosticChain) * @generated */ EOperation getChoiceComponent__AtLeastOneProperty__Map_DiagnosticChain(); /** * Returns the meta object for class '{@link iso20022.AbstractDateTimeConcept <em>Abstract Date Time Concept</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Abstract Date Time Concept</em>'. * @see iso20022.AbstractDateTimeConcept * @generated */ EClass getAbstractDateTimeConcept(); /** * Returns the meta object for the attribute '{@link iso20022.AbstractDateTimeConcept#getMinInclusive <em>Min Inclusive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Min Inclusive</em>'. * @see iso20022.AbstractDateTimeConcept#getMinInclusive() * @see #getAbstractDateTimeConcept() * @generated */ EAttribute getAbstractDateTimeConcept_MinInclusive(); /** * Returns the meta object for the attribute '{@link iso20022.AbstractDateTimeConcept#getMinExclusive <em>Min Exclusive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Min Exclusive</em>'. * @see iso20022.AbstractDateTimeConcept#getMinExclusive() * @see #getAbstractDateTimeConcept() * @generated */ EAttribute getAbstractDateTimeConcept_MinExclusive(); /** * Returns the meta object for the attribute '{@link iso20022.AbstractDateTimeConcept#getMaxInclusive <em>Max Inclusive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Max Inclusive</em>'. * @see iso20022.AbstractDateTimeConcept#getMaxInclusive() * @see #getAbstractDateTimeConcept() * @generated */ EAttribute getAbstractDateTimeConcept_MaxInclusive(); /** * Returns the meta object for the attribute '{@link iso20022.AbstractDateTimeConcept#getMaxExclusive <em>Max Exclusive</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Max Exclusive</em>'. * @see iso20022.AbstractDateTimeConcept#getMaxExclusive() * @see #getAbstractDateTimeConcept() * @generated */ EAttribute getAbstractDateTimeConcept_MaxExclusive(); /** * Returns the meta object for the attribute '{@link iso20022.AbstractDateTimeConcept#getPattern <em>Pattern</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Pattern</em>'. * @see iso20022.AbstractDateTimeConcept#getPattern() * @see #getAbstractDateTimeConcept() * @generated */ EAttribute getAbstractDateTimeConcept_Pattern(); /** * Returns the meta object for class '{@link iso20022.EndPointCategory <em>End Point Category</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>End Point Category</em>'. * @see iso20022.EndPointCategory * @generated */ EClass getEndPointCategory(); /** * Returns the meta object for the reference list '{@link iso20022.EndPointCategory#getEndPoints <em>End Points</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the reference list '<em>End Points</em>'. * @see iso20022.EndPointCategory#getEndPoints() * @see #getEndPointCategory() * @generated */ EReference getEndPointCategory_EndPoints(); /** * Returns the meta object for class '{@link iso20022.Binary <em>Binary</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Binary</em>'. * @see iso20022.Binary * @generated */ EClass getBinary(); /** * Returns the meta object for the attribute '{@link iso20022.Binary#getMinLength <em>Min Length</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Min Length</em>'. * @see iso20022.Binary#getMinLength() * @see #getBinary() * @generated */ EAttribute getBinary_MinLength(); /** * Returns the meta object for the attribute '{@link iso20022.Binary#getMaxLength <em>Max Length</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Max Length</em>'. * @see iso20022.Binary#getMaxLength() * @see #getBinary() * @generated */ EAttribute getBinary_MaxLength(); /** * Returns the meta object for the attribute '{@link iso20022.Binary#getLength <em>Length</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Length</em>'. * @see iso20022.Binary#getLength() * @see #getBinary() * @generated */ EAttribute getBinary_Length(); /** * Returns the meta object for the attribute '{@link iso20022.Binary#getPattern <em>Pattern</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Pattern</em>'. * @see iso20022.Binary#getPattern() * @see #getBinary() * @generated */ EAttribute getBinary_Pattern(); /** * Returns the meta object for class '{@link iso20022.Date <em>Date</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Date</em>'. * @see iso20022.Date * @generated */ EClass getDate(); /** * Returns the meta object for class '{@link iso20022.DateTime <em>Date Time</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Date Time</em>'. * @see iso20022.DateTime * @generated */ EClass getDateTime(); /** * Returns the meta object for class '{@link iso20022.Day <em>Day</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Day</em>'. * @see iso20022.Day * @generated */ EClass getDay(); /** * Returns the meta object for class '{@link iso20022.Duration <em>Duration</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Duration</em>'. * @see iso20022.Duration * @generated */ EClass getDuration(); /** * Returns the meta object for class '{@link iso20022.Month <em>Month</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Month</em>'. * @see iso20022.Month * @generated */ EClass getMonth(); /** * Returns the meta object for class '{@link iso20022.MonthDay <em>Month Day</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Month Day</em>'. * @see iso20022.MonthDay * @generated */ EClass getMonthDay(); /** * Returns the meta object for class '{@link iso20022.Time <em>Time</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Time</em>'. * @see iso20022.Time * @generated */ EClass getTime(); /** * Returns the meta object for class '{@link iso20022.Year <em>Year</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Year</em>'. * @see iso20022.Year * @generated */ EClass getYear(); /** * Returns the meta object for class '{@link iso20022.YearMonth <em>Year Month</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Year Month</em>'. * @see iso20022.YearMonth * @generated */ EClass getYearMonth(); /** * Returns the meta object for class '{@link iso20022.UserDefined <em>User Defined</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>User Defined</em>'. * @see iso20022.UserDefined * @generated */ EClass getUserDefined(); /** * Returns the meta object for the attribute '{@link iso20022.UserDefined#getNamespace <em>Namespace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Namespace</em>'. * @see iso20022.UserDefined#getNamespace() * @see #getUserDefined() * @generated */ EAttribute getUserDefined_Namespace(); /** * Returns the meta object for the attribute '{@link iso20022.UserDefined#getNamespaceList <em>Namespace List</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Namespace List</em>'. * @see iso20022.UserDefined#getNamespaceList() * @see #getUserDefined() * @generated */ EAttribute getUserDefined_NamespaceList(); /** * Returns the meta object for the attribute '{@link iso20022.UserDefined#getProcessContents <em>Process Contents</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Process Contents</em>'. * @see iso20022.UserDefined#getProcessContents() * @see #getUserDefined() * @generated */ EAttribute getUserDefined_ProcessContents(); /** * Returns the meta object for class '{@link iso20022.IndustryMessageSet <em>Industry Message Set</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Industry Message Set</em>'. * @see iso20022.IndustryMessageSet * @generated */ EClass getIndustryMessageSet(); /** * Returns the meta object for class '{@link iso20022.ConvergenceDocumentation <em>Convergence Documentation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Convergence Documentation</em>'. * @see iso20022.ConvergenceDocumentation * @generated */ EClass getConvergenceDocumentation(); /** * Returns the meta object for class '{@link iso20022.ISO15022MessageSet <em>ISO15022 Message Set</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>ISO15022 Message Set</em>'. * @see iso20022.ISO15022MessageSet * @generated */ EClass getISO15022MessageSet(); /** * Returns the meta object for class '{@link iso20022.SchemaType <em>Schema Type</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for class '<em>Schema Type</em>'. * @see iso20022.SchemaType * @generated */ EClass getSchemaType(); /** * Returns the meta object for the attribute '{@link iso20022.SchemaType#getKind <em>Kind</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for the attribute '<em>Kind</em>'. * @see iso20022.SchemaType#getKind() * @see #getSchemaType() * @generated */ EAttribute getSchemaType_Kind(); /** * Returns the meta object for enum '{@link iso20022.RegistrationStatus <em>Registration Status</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Registration Status</em>'. * @see iso20022.RegistrationStatus * @generated */ EEnum getRegistrationStatus(); /** * Returns the meta object for enum '{@link iso20022.Aggregation <em>Aggregation</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Aggregation</em>'. * @see iso20022.Aggregation * @generated */ EEnum getAggregation(); /** * Returns the meta object for enum '{@link iso20022.DeliveryAssurance <em>Delivery Assurance</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Delivery Assurance</em>'. * @see iso20022.DeliveryAssurance * @generated */ EEnum getDeliveryAssurance(); /** * Returns the meta object for enum '{@link iso20022.Durability <em>Durability</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Durability</em>'. * @see iso20022.Durability * @generated */ EEnum getDurability(); /** * Returns the meta object for enum '{@link iso20022.MessageCasting <em>Message Casting</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Message Casting</em>'. * @see iso20022.MessageCasting * @generated */ EEnum getMessageCasting(); /** * Returns the meta object for enum '{@link iso20022.MessageDeliveryOrder <em>Message Delivery Order</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Message Delivery Order</em>'. * @see iso20022.MessageDeliveryOrder * @generated */ EEnum getMessageDeliveryOrder(); /** * Returns the meta object for enum '{@link iso20022.MessageValidationLevel <em>Message Validation Level</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Message Validation Level</em>'. * @see iso20022.MessageValidationLevel * @generated */ EEnum getMessageValidationLevel(); /** * Returns the meta object for enum '{@link iso20022.MessageValidationOnOff <em>Message Validation On Off</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Message Validation On Off</em>'. * @see iso20022.MessageValidationOnOff * @generated */ EEnum getMessageValidationOnOff(); /** * Returns the meta object for enum '{@link iso20022.MessageValidationResults <em>Message Validation Results</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Message Validation Results</em>'. * @see iso20022.MessageValidationResults * @generated */ EEnum getMessageValidationResults(); /** * Returns the meta object for enum '{@link iso20022.ReceiverAsynchronicity <em>Receiver Asynchronicity</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Receiver Asynchronicity</em>'. * @see iso20022.ReceiverAsynchronicity * @generated */ EEnum getReceiverAsynchronicity(); /** * Returns the meta object for enum '{@link iso20022.SenderAsynchronicity <em>Sender Asynchronicity</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Sender Asynchronicity</em>'. * @see iso20022.SenderAsynchronicity * @generated */ EEnum getSenderAsynchronicity(); /** * Returns the meta object for enum '{@link iso20022.ProcessContent <em>Process Content</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Process Content</em>'. * @see iso20022.ProcessContent * @generated */ EEnum getProcessContent(); /** * Returns the meta object for enum '{@link iso20022.Namespace <em>Namespace</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Namespace</em>'. * @see iso20022.Namespace * @generated */ EEnum getNamespace(); /** * Returns the meta object for enum '{@link iso20022.SchemaTypeKind <em>Schema Type Kind</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>Schema Type Kind</em>'. * @see iso20022.SchemaTypeKind * @generated */ EEnum getSchemaTypeKind(); /** * Returns the meta object for enum '{@link iso20022.ISO20022Version <em>ISO20022 Version</em>}'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the meta object for enum '<em>ISO20022 Version</em>'. * @see iso20022.ISO20022Version * @generated */ EEnum getISO20022Version(); /** * Returns the factory that creates the instances of the model. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the factory that creates the instances of the model. * @generated */ Iso20022Factory getIso20022Factory(); } //Iso20022Package
package com.example.progressbarex; import android.app.ProgressDialog; import android.content.Context; import android.content.DialogInterface; import android.os.AsyncTask; import android.widget.ProgressBar; public class MyAsync extends AsyncTask { private Context context; ProgressDialog progressDialog; public MyAsync(Context context) { this.context = context; } @Override protected Object doInBackground(Object[] objects) { for(int i=0;i<=10;i++) { try { Thread.sleep(2000); publishProgress(i); } catch (InterruptedException e) { e.printStackTrace(); } } return null; } @Override protected void onPreExecute() { super.onPreExecute(); progressDialog=new ProgressDialog(context); progressDialog.setTitle("Hi"); progressDialog.setMessage("eating"); progressDialog.setMax(10); progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); progressDialog.setButton(ProgressDialog.BUTTON_NEGATIVE, "cancel", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { return; } }); } @Override protected void onProgressUpdate(Object[] values) { super.onProgressUpdate(values); progressDialog.setProgress((Integer) values[0]); } }