Home | History | Annotate | Download | only in iso

Lines Matching defs:userType

78     public Class<? extends Box> getClassForFourCc(String type, byte[] userType, String parent) {
79 FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke();
88 public Box createBox(String type, byte[] userType, String parent) {
90 FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke();
103 if ("userType".equals(param[i])) {
104 constructorArgs[i] = userType;
145 private byte[] userType;
150 public FourCcToBox(String type, byte[] userType, String parent) {
153 this.userType = userType;
166 if (userType != null) {
168 throw new RuntimeException("we have a userType but no uuid box type. Something's wrong");
170 constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
172 constructor = mapping.getProperty("uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");