blob: 9ea4b4e1c287900bee1a66480c01de693a92f57c [file] [log] [blame]
/*
* Copyright (c) 2010-2012, 2015 Eike Stepper (Berlin, Germany) and others.
* 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:
* Ibrahim Sallam - initial API and implementation
*/
package org.eclipse.emf.cdo.server.internal.objectivity.schema;
import com.objy.db.app.ooObj;
public class ObjyProperty extends ooObj
{
protected String name;
protected String value;
public ObjyProperty(String name, String value)
{
this.name = name;
this.value = value;
}
public String getKey()
{
fetch();
return name;
}
public void setName(String name)
{
markModified();
this.name = name;
}
public String getValue()
{
fetch();
return value;
}
public void setValue(String value)
{
markModified();
this.value = value;
}
}