// $LastChangedRevision: 4733 $ DO NOT EDIT. Make changes to Employee.java instead.
package er.ajax.mootools.example.components;
import java.util.NoSuchElementException;
import org.apache.log4j.Logger;
import com.webobjects.eoaccess.EOUtilities;
import com.webobjects.eocontrol.EOEditingContext;
import com.webobjects.eocontrol.EOFetchSpecification;
import com.webobjects.eocontrol.EOKeyValueQualifier;
import com.webobjects.eocontrol.EOQualifier;
import com.webobjects.eocontrol.EOSortOrdering;
import com.webobjects.foundation.NSArray;
import er.extensions.eof.ERXGenericRecord;
import er.extensions.eof.ERXKey;
@SuppressWarnings("all")
public abstract class _Employee extends ERXGenericRecord {
public static final String ENTITY_NAME = "Employee";
// Attribute Keys
public static final ERXKey<String> FIRST_NAME = new ERXKey<String>("firstName");
public static final ERXKey<String> LAST_NAME = new ERXKey<String>("lastName");
// Relationship Keys
public static final ERXKey<Company> COMPANY = new ERXKey<Company>("company");
// Attributes
public static final String FIRST_NAME_KEY = FIRST_NAME.key();
public static final String LAST_NAME_KEY = LAST_NAME.key();
// Relationships
public static final String COMPANY_KEY = COMPANY.key();
private static Logger LOG = Logger.getLogger(_Employee.class);
public Employee localInstanceIn(EOEditingContext editingContext) {
Employee localInstance = (Employee)EOUtilities.localInstanceOfObject(editingContext, this);
if (localInstance == null) {
throw new IllegalStateException("You attempted to localInstance " + this + ", which has not yet committed.");
}
return localInstance;
}
public String firstName() {
return (String) storedValueForKey("firstName");
}
public void setFirstName(String value) {
if (_Employee.LOG.isDebugEnabled()) {
_Employee.LOG.debug( "updating firstName from " + firstName() + " to " + value);
}
takeStoredValueForKey(value, "firstName");
}
public String lastName() {
return (String) storedValueForKey("lastName");
}
public void setLastName(String value) {
if (_Employee.LOG.isDebugEnabled()) {
_Employee.LOG.debug( "updating lastName from " + lastName() + " to " + value);
}
takeStoredValueForKey(value, "lastName");
}
public Company company() {
return (Company)storedValueForKey("company");
}
public void setCompany(er.ajax.mootools.example.components.Company value) {
takeStoredValueForKey(value, "company");
}
public void setCompanyRelationship(er.ajax.mootools.example.components.Company value) {
if (_Employee.LOG.isDebugEnabled()) {
_Employee.LOG.debug("updating company from " + company() + " to " + value);
}
if (er.extensions.eof.ERXGenericRecord.InverseRelationshipUpdater.updateInverseRelationships()) {
setCompany(value);
}
else if (value == null) {
er.ajax.mootools.example.components.Company oldValue = company();
if (oldValue != null) {
removeObjectFromBothSidesOfRelationshipWithKey(oldValue, "company");
}
} else {
addObjectToBothSidesOfRelationshipWithKey(value, "company");
}
}
public static Employee createEmployee(EOEditingContext editingContext, String firstName
, String lastName
, er.ajax.mootools.example.components.Company company) {
Employee eo = (Employee) EOUtilities.createAndInsertInstance(editingContext, _Employee.ENTITY_NAME);
eo.setFirstName(firstName);
eo.setLastName(lastName);
eo.setCompanyRelationship(company);
return eo;
}
public static NSArray<Employee> fetchAllEmployees(EOEditingContext editingContext) {
return _Employee.fetchAllEmployees(editingContext, null);
}
public static NSArray<Employee> fetchAllEmployees(EOEditingContext editingContext, NSArray<EOSortOrdering> sortOrderings) {
return _Employee.fetchEmployees(editingContext, null, sortOrderings);
}
public static NSArray<Employee> fetchEmployees(EOEditingContext editingContext, EOQualifier qualifier, NSArray<EOSortOrdering> sortOrderings) {
EOFetchSpecification fetchSpec = new EOFetchSpecification(_Employee.ENTITY_NAME, qualifier, sortOrderings);
fetchSpec.setIsDeep(true);
NSArray<Employee> eoObjects = (NSArray<Employee>)editingContext.objectsWithFetchSpecification(fetchSpec);
return eoObjects;
}
public static Employee fetchEmployee(EOEditingContext editingContext, String keyName, Object value) {
return _Employee.fetchEmployee(editingContext, new EOKeyValueQualifier(keyName, EOQualifier.QualifierOperatorEqual, value));
}
public static Employee fetchEmployee(EOEditingContext editingContext, EOQualifier qualifier) {
NSArray<Employee> eoObjects = _Employee.fetchEmployees(editingContext, qualifier, null);
Employee eoObject;
int count = eoObjects.count();
if (count == 0) {
eoObject = null;
}
else if (count == 1) {
eoObject = (Employee)eoObjects.objectAtIndex(0);
}
else {
throw new IllegalStateException("There was more than one Employee that matched the qualifier '" + qualifier + "'.");
}
return eoObject;
}
public static Employee fetchRequiredEmployee(EOEditingContext editingContext, String keyName, Object value) {
return _Employee.fetchRequiredEmployee(editingContext, new EOKeyValueQualifier(keyName, EOQualifier.QualifierOperatorEqual, value));
}
public static Employee fetchRequiredEmployee(EOEditingContext editingContext, EOQualifier qualifier) {
Employee eoObject = _Employee.fetchEmployee(editingContext, qualifier);
if (eoObject == null) {
throw new NoSuchElementException("There was no Employee that matched the qualifier '" + qualifier + "'.");
}
return eoObject;
}
public static Employee localInstanceIn(EOEditingContext editingContext, Employee eo) {
Employee localInstance = (eo == null) ? null : (Employee)EOUtilities.localInstanceOfObject(editingContext, eo);
if (localInstance == null && eo != null) {
throw new IllegalStateException("You attempted to localInstance " + eo + ", which has not yet committed.");
}
return localInstance;
}
}