From 40a9d99496e098562f090fb7ffce9e749011b131 Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Mon, 20 May 2024 17:58:16 -0400 Subject: Formatting pass --- .../java/net/wotonomy/control/EOKeyGlobalID.java | 160 ++++++++++----------- 1 file changed, 79 insertions(+), 81 deletions(-) (limited to 'projects/net.wotonomy.persistence/src/main/java/net/wotonomy/control/EOKeyGlobalID.java') diff --git a/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/control/EOKeyGlobalID.java b/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/control/EOKeyGlobalID.java index 76c4d05..7034f03 100644 --- a/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/control/EOKeyGlobalID.java +++ b/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/control/EOKeyGlobalID.java @@ -28,119 +28,117 @@ import net.wotonomy.foundation.NSCoder; import net.wotonomy.foundation.NSCoding; /** -* The model object which represents the mapping between database -* fields and object properties, lists available entities, lists -* connection dictionaries, and has fetch specifications. -* -* @author cgruber@israfil.net -* @author $Author: cgruber $ -* @version $Revision: 894 $ -*/ + * The model object which represents the mapping between database fields and + * object properties, lists available entities, lists connection dictionaries, + * and has fetch specifications. + * + * @author cgruber@israfil.net + * @author $Author: cgruber $ + * @version $Revision: 894 $ + */ -public abstract class EOKeyGlobalID extends EOGlobalID - implements NSCoding { +public abstract class EOKeyGlobalID extends EOGlobalID implements NSCoding { protected String _entityName; protected int _hash; - protected EOKeyGlobalID(String entityName, int hashCode) { - super(); - _entityName = entityName; - _hash = hashCode; - } + protected EOKeyGlobalID(String entityName, int hashCode) { + super(); + _entityName = entityName; + _hash = hashCode; + } - protected void _prepClone(EOKeyGlobalID gid) { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + protected void _prepClone(EOKeyGlobalID gid) { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public static EOKeyGlobalID globalIDWithEntityName(String s, Object aobj[]) { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public static EOKeyGlobalID globalIDWithEntityName(String s, Object aobj[]) { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public static EOKeyGlobalID _defaultGlobalIDWithEntityName(String s, Object aobj[]) { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public static EOKeyGlobalID _defaultGlobalIDWithEntityName(String s, Object aobj[]) { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public String entityName() { - return _entityName; - } + public String entityName() { + return _entityName; + } - public String _literalEntityName() { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public String _literalEntityName() { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public boolean _isFinal() { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public boolean _isFinal() { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public void _setGuessedEntityName(String s) { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public void _setGuessedEntityName(String s) { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public String _guessedEntityName() { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public String _guessedEntityName() { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public void _setSubEntityName(String s) { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public void _setSubEntityName(String s) { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public String _subEntityName() { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public String _subEntityName() { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public int hashCode() { - return _hash; - } + public int hashCode() { + return _hash; + } - public abstract Object[] keyValues(); + public abstract Object[] keyValues(); - public abstract Object[] _keyValuesNoCopy(); + public abstract Object[] _keyValuesNoCopy(); - public abstract int keyCount(); + public abstract int keyCount(); - public NSArray keyValuesArray() { - return new NSArray(keyValues()); - } + public NSArray keyValuesArray() { + return new NSArray(keyValues()); + } - public static Object decodeObject(NSCoder nscoder) { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public static Object decodeObject(NSCoder nscoder) { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public static EOKeyGlobalID _adjustForInheritance(EOKeyGlobalID eokeyglobalid, String s, String s1) { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public static EOKeyGlobalID _adjustForInheritance(EOKeyGlobalID eokeyglobalid, String s, String s1) { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public void encodeWithCoder(NSCoder nscoder) { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public void encodeWithCoder(NSCoder nscoder) { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - public Class classForCoder() { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + public Class classForCoder() { + throw new UnsupportedOperationException("Not Yet Implemented"); + } - protected Object readResolve() throws ObjectStreamException { - throw new UnsupportedOperationException("Not Yet Implemented"); - } + protected Object readResolve() throws ObjectStreamException { + throw new UnsupportedOperationException("Not Yet Implemented"); + } } /* - * $Log$ - * Revision 1.2 2006/02/16 16:47:14 cgruber - * Move some classes in to "internal" packages and re-work imports, etc. + * $Log$ Revision 1.2 2006/02/16 16:47:14 cgruber Move some classes in to + * "internal" packages and re-work imports, etc. * - * Also use UnsupportedOperationExceptions where appropriate, instead of WotonomyExceptions. + * Also use UnsupportedOperationExceptions where appropriate, instead of + * WotonomyExceptions. * - * Revision 1.1 2006/02/16 13:19:57 cgruber - * Check in all sources in eclipse-friendly maven-enabled packages. + * Revision 1.1 2006/02/16 13:19:57 cgruber Check in all sources in + * eclipse-friendly maven-enabled packages. * - * Revision 1.2 2003/08/19 01:50:54 chochos - * added two concrete implementations of EOKeyGlobalID. + * Revision 1.2 2003/08/19 01:50:54 chochos added two concrete implementations + * of EOKeyGlobalID. * - * Revision 1.1 2002/07/14 21:59:06 mpowers - * Contributions from cgruber. + * Revision 1.1 2002/07/14 21:59:06 mpowers Contributions from cgruber. * - * Revision 1.1 2002/06/25 00:11:09 cgruber - * Add EOKeyGlobalID, but it won't work without NSCoder. + * Revision 1.1 2002/06/25 00:11:09 cgruber Add EOKeyGlobalID, but it won't work + * without NSCoder. * */ -- cgit v1.2.3