blob: 85eb264407259a0e11331201db91f0bfe3ebb03a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.dbschema;
/** Names of properties of elements.
*/
public interface DBElementProperties {
/** Name of {@link DBElement#getName name} property for {@link
* DBElement db elements}.
*/
public static final String PROP_NAME = "name"; //NOI18N
/** Name of {@link ColumnElement#getType type} property for {@link
* ColumnElement column elements}.
*/
public static final String PROP_TYPE = "type"; //NOI18N
/** Name of {@link ColumnElement#isNullable nullable} property for {@link
* ColumnElement column elements}.
*/
public static final String PROP_NULLABLE = "nullable"; //NOI18N
/** Name of {@link ColumnElement#getLength length} property for {@link
* ColumnElement column elements}.
*/
public static final String PROP_LENGTH = "length"; //NOI18N
/** Name of {@link ColumnElement#getPrecision precision} property for {@link
* ColumnElement column elements}.
*/
public static final String PROP_PRECISION = "precision"; //NOI18N
/** Name of {@link ColumnElement#getScale scale} property for {@link
* ColumnElement column elements}.
*/
public static final String PROP_SCALE = "scale"; //NOI18N
/** Name of {@link IndexElement#isUnique flag} property for {@link
* IndexElement index elements}.
*/
public static final String PROP_UNIQUE = "unique"; //NOI18N
/** Name of {@link UniqueKeyElement#isPrimaryKey flag} property for {@link
* UniqueKeyElement unique key elements}.
*/
public static final String PROP_PK = "primaryKey"; //NOI18N
/** Name of {@link SchemaElement#getSchema schema} property for {@link
* SchemaElement schema elements}.
*/
public static final String PROP_SCHEMA= "schema"; //NOI18N
/** Name of {@link SchemaElement#getCatalog catalog} property for {@link
* SchemaElement schema elements}.
*/
public static final String PROP_CATALOG= "catalog"; //NOI18N
/** Name of tables property for {@link SchemaElement#getTables schema elements}.
*/
public static final String PROP_TABLES = "tables"; // NOI18N
/** Name of {@link TableElement#getColumns columns} property for {@link
* TableElement tables}.
*/
public static final String PROP_COLUMNS = "columns"; //NOI18N
/** Name of {@link TableElement#getColumnPairs column pairs} property for {@link
* TableElement tables}.
*/
public static final String PROP_COLUMN_PAIRS = "columnPairs"; //NOI18N
/** Name of {@link TableElement#getIndexes indexes} property for {@link
* TableElement tables}.
*/
public static final String PROP_INDEXES = "indexes"; //NOI18N
/** Name of {@link TableElement#getKeys keys} property for
* {@link TableElement tables}.
*/
public static final String PROP_KEYS = "keys"; //NOI18N
/** Name of {@link SchemaElement#getStatus status} property for {@link
* SchemaElement schema elements}.
*/
public static final String PROP_STATUS = "status"; //NOI18N
/** Name of {@link TableElement#isTableOrView is table or view} property for
* {@link TableElement tables}.
*/
public static final String PROP_TABLE_OR_VIEW = "tableOrView"; //NOI18N
/** Name of {@link ColumnPairElement#getLocalColumn local column} property for
* {@link ColumnPairElement column pair elements}.
*/
public static final String PROP_LOCAL_COLUMN = "localColumn"; //NOI18N
/** Name of {@link ColumnPairElement#getReferencedColumn referenced column} property for
* {@link ColumnPairElement column pair elements}.
*/
public static final String PROP_REFERENCED_COLUMN = "referencedColumn"; //NOI18N
}