| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
|
| 22 |
|
package net.wotonomy.control; |
| 23 |
|
|
| 24 |
|
import java.io.ObjectStreamException; |
| 25 |
|
|
| 26 |
|
import net.wotonomy.foundation.NSArray; |
| 27 |
|
import net.wotonomy.foundation.NSCoder; |
| 28 |
|
import net.wotonomy.foundation.NSCoding; |
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
|
| 33 |
|
|
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
|
| 38 |
|
|
| 39 |
|
|
| 40 |
|
public abstract class EOKeyGlobalID extends EOGlobalID |
| 41 |
|
implements NSCoding { |
| 42 |
|
|
| 43 |
|
protected String _entityName; |
| 44 |
|
protected int _hash; |
| 45 |
|
|
| 46 |
|
protected EOKeyGlobalID(String entityName, int hashCode) { |
| 47 |
0 |
super(); |
| 48 |
0 |
_entityName = entityName; |
| 49 |
0 |
_hash = hashCode; |
| 50 |
0 |
} |
| 51 |
|
|
| 52 |
|
protected void _prepClone(EOKeyGlobalID gid) { |
| 53 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 54 |
|
} |
| 55 |
|
|
| 56 |
|
public static EOKeyGlobalID globalIDWithEntityName(String s, Object aobj[]) { |
| 57 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
public static EOKeyGlobalID _defaultGlobalIDWithEntityName(String s, Object aobj[]) { |
| 61 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
public String entityName() { |
| 65 |
0 |
return _entityName; |
| 66 |
|
} |
| 67 |
|
|
| 68 |
|
public String _literalEntityName() { |
| 69 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 70 |
|
} |
| 71 |
|
|
| 72 |
|
public boolean _isFinal() { |
| 73 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 74 |
|
} |
| 75 |
|
|
| 76 |
|
public void _setGuessedEntityName(String s) { |
| 77 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 78 |
|
} |
| 79 |
|
|
| 80 |
|
public String _guessedEntityName() { |
| 81 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 82 |
|
} |
| 83 |
|
|
| 84 |
|
public void _setSubEntityName(String s) { |
| 85 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 86 |
|
} |
| 87 |
|
|
| 88 |
|
public String _subEntityName() { |
| 89 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 90 |
|
} |
| 91 |
|
|
| 92 |
|
public int hashCode() { |
| 93 |
0 |
return _hash; |
| 94 |
|
} |
| 95 |
|
|
| 96 |
|
public abstract Object[] keyValues(); |
| 97 |
|
|
| 98 |
|
public abstract Object[] _keyValuesNoCopy(); |
| 99 |
|
|
| 100 |
|
public abstract int keyCount(); |
| 101 |
|
|
| 102 |
|
public NSArray keyValuesArray() { |
| 103 |
0 |
return new NSArray(keyValues()); |
| 104 |
|
} |
| 105 |
|
|
| 106 |
|
public static Object decodeObject(NSCoder nscoder) { |
| 107 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 108 |
|
} |
| 109 |
|
|
| 110 |
|
public static EOKeyGlobalID _adjustForInheritance(EOKeyGlobalID eokeyglobalid, String s, String s1) { |
| 111 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 112 |
|
} |
| 113 |
|
|
| 114 |
|
public void encodeWithCoder(NSCoder nscoder) { |
| 115 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 116 |
|
} |
| 117 |
|
|
| 118 |
|
public Class classForCoder() { |
| 119 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 120 |
|
} |
| 121 |
|
|
| 122 |
|
protected Object readResolve() throws ObjectStreamException { |
| 123 |
0 |
throw new UnsupportedOperationException("Not Yet Implemented"); |
| 124 |
|
} |
| 125 |
|
|
| 126 |
|
} |
| 127 |
|
|
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 136 |
|
|
| 137 |
|
|
| 138 |
|
|
| 139 |
|
|
| 140 |
|
|
| 141 |
|
|
| 142 |
|
|
| 143 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
|