blob: 692cd6d6277c1c9b8482f1e446a0eee4b3f48f8f [file] [log] [blame]
// Region.java
package org.eclipse.stem.definitions.nodes;
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* This interface defines a class in an EMF model for a Region node.
*
* @model
*/
public interface Region extends GeographicFeature {
/**
* This is the segment of the type URI that prefixes all other segments in a
* geographic feature node type URI.
*/
String URI_TYPE_REGION_NODE_SEGMENT = URI_TYPE_GEOGRAPHIC_FEATURE_NODE_SEGMENT
+ "/region";
String DUBLIN_CORE_SUBJECT = "region";
} // Region