/** * <copyright> * * Copyright (c) 2012 Springsite BV (The Netherlands) 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: * Martin Taal - Initial API and implementation * * </copyright> * * $Id: ModelXMLConstants.java,v 1.6 2011/08/25 12:39:16 mtaal Exp $ */ package org.eclipse.emf.texo.json; /** * Constants used when writing/reading JSON. * * @author <a href="mtaal@elver.org">Martin Taal</a> */ public class ModelJSONConstants { public final static String ID_PROPERTY = "_id"; //$NON-NLS-1$ public final static String URI_PROPERTY = "_uri"; //$NON-NLS-1$ public final static String PROXY_PROPERTY = "_proxy"; //$NON-NLS-1$ public final static String TITLE_PROPERTY = "_title"; //$NON-NLS-1$ public final static String ECLASS_PROPERTY = "_eclass"; //$NON-NLS-1$ public final static String EFEATURE_PROPERTY = "_efeature"; //$NON-NLS-1$ public final static String NUMBER_TEXT_SUFFIX = "_text"; //$NON-NLS-1$ public final static String VALUE_PROPERTY = "value"; //$NON-NLS-1$ public final static String KEY_PROPERTY = "key"; //$NON-NLS-1$ }