Skip to main content
summaryrefslogblamecommitdiffstats
blob: f354af95fed14ae8f8df292429354668df5a3396 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                
                                                  
 


                                                                      
 
                                                                       
 
                                                                  


                                           
                                                                                                                   















                                                                                                  
                                                                                       


                                                                                 
/*******************************************************************************
 * Copyright (c) 2008 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.orm;

import org.eclipse.jpt.core.context.java.JavaMultiRelationshipMapping;
import org.eclipse.jpt.core.resource.common.AbstractJpaEObject;
import org.eclipse.jpt.core.resource.orm.MapKey;

public class VirtualMapKey extends AbstractJpaEObject implements MapKey
{
	JavaMultiRelationshipMapping javaMultiRelationshipMapping;

	protected boolean metadataComplete;
	
	public VirtualMapKey(JavaMultiRelationshipMapping javaMultiRelationshipMapping, boolean metadataComplete) {
		super();
		this.javaMultiRelationshipMapping = javaMultiRelationshipMapping;
		this.metadataComplete = metadataComplete;
	}

	public String getName() {
		if (this.metadataComplete) {
			return null;
		}
		return this.javaMultiRelationshipMapping.getMapKey();
	}

	public void setName(String newName) {
		throw new UnsupportedOperationException("cannot set values on a virtual mapping");
	}

	public void update(JavaMultiRelationshipMapping javaMultiRelationshipMapping) {
		this.javaMultiRelationshipMapping = javaMultiRelationshipMapping;
	}
}

Back to the top