blob: 0f5fa6046861c94d662ceb6fecde495d9694ca23 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.core.internal.context.base;
public enum AccessType {
FIELD,
PROPERTY;
public static AccessType fromJavaResourceModel(org.eclipse.jpt.core.internal.resource.java.AccessType javaAccess) {
if (javaAccess == org.eclipse.jpt.core.internal.resource.java.AccessType.FIELD) {
return FIELD;
}
else if (javaAccess == org.eclipse.jpt.core.internal.resource.java.AccessType.PROPERTY) {
return PROPERTY;
}
return null;
}
public static AccessType fromXmlResourceModel(org.eclipse.jpt.core.internal.resource.orm.AccessType ormAccess) {
if (ormAccess == org.eclipse.jpt.core.internal.resource.orm.AccessType.FIELD) {
return FIELD;
}
else if (ormAccess == org.eclipse.jpt.core.internal.resource.orm.AccessType.PROPERTY) {
return PROPERTY;
}
return null;
}
public static org.eclipse.jpt.core.internal.resource.orm.AccessType toXmlResourceModel(AccessType access) {
if (access == FIELD) {
return org.eclipse.jpt.core.internal.resource.orm.AccessType.FIELD;
}
else if (access == PROPERTY) {
return org.eclipse.jpt.core.internal.resource.orm.AccessType.PROPERTY;
}
return null;
}
}