Class Hierarchy        Index

Interface COM.cloudscape.types.AliasInfo

public interface AliasInfo
extends Formatable
Copyright © 1998-1999, Cloudscape, Inc. All rights reserved.

An interface for describing an alias in Cloudscape systems.


Variable Index

 o ALIAS_NAME_SPACE_CLASS_AS_CHAR
Public statics for the various alias name spaces as both char and String.
 o ALIAS_NAME_SPACE_CLASS_AS_STRING
 o ALIAS_NAME_SPACE_METHOD_AS_CHAR
 o ALIAS_NAME_SPACE_METHOD_AS_STRING
 o ALIAS_TYPE_CLASS_AS_CHAR
Public statics for the various alias types as both char and String.
 o ALIAS_TYPE_CLASS_AS_STRING
 o ALIAS_TYPE_METHOD_AS_CHAR
 o ALIAS_TYPE_METHOD_AS_STRING
 o ALIAS_TYPE_USER_AGGREGATE_AS_CHAR
 o ALIAS_TYPE_USER_AGGREGATE_AS_STRING
 o ALIAS_TYPE_WORK_UNIT_AS_CHAR
 o ALIAS_TYPE_WORK_UNIT_AS_STRING
 o CLASS_NAME

Method Index

 o getMethodName()
Get the name of the static method that the alias represents at the source database.
 o getTargetClassName()
Get the name of the class that the alias represents at the target database.
 o getTargetMethodName()
Get the name of the static method that the alias represents at the target database.

Variables

 o CLASS_NAME
 public static final String CLASS_NAME
 o ALIAS_TYPE_CLASS_AS_CHAR
 public static final char ALIAS_TYPE_CLASS_AS_CHAR
Public statics for the various alias types as both char and String.

 o ALIAS_TYPE_METHOD_AS_CHAR
 public static final char ALIAS_TYPE_METHOD_AS_CHAR
 o ALIAS_TYPE_USER_AGGREGATE_AS_CHAR
 public static final char ALIAS_TYPE_USER_AGGREGATE_AS_CHAR
 o ALIAS_TYPE_WORK_UNIT_AS_CHAR
 public static final char ALIAS_TYPE_WORK_UNIT_AS_CHAR
 o ALIAS_TYPE_CLASS_AS_STRING
 public static final String ALIAS_TYPE_CLASS_AS_STRING
 o ALIAS_TYPE_METHOD_AS_STRING
 public static final String ALIAS_TYPE_METHOD_AS_STRING
 o ALIAS_TYPE_USER_AGGREGATE_AS_STRING
 public static final String ALIAS_TYPE_USER_AGGREGATE_AS_STRING
 o ALIAS_TYPE_WORK_UNIT_AS_STRING
 public static final String ALIAS_TYPE_WORK_UNIT_AS_STRING
 o ALIAS_NAME_SPACE_CLASS_AS_CHAR
 public static final char ALIAS_NAME_SPACE_CLASS_AS_CHAR
Public statics for the various alias name spaces as both char and String.

 o ALIAS_NAME_SPACE_METHOD_AS_CHAR
 public static final char ALIAS_NAME_SPACE_METHOD_AS_CHAR
 o ALIAS_NAME_SPACE_CLASS_AS_STRING
 public static final String ALIAS_NAME_SPACE_CLASS_AS_STRING
 o ALIAS_NAME_SPACE_METHOD_AS_STRING
 public static final String ALIAS_NAME_SPACE_METHOD_AS_STRING

Methods

 o getMethodName
 public abstract String getMethodName()
Get the name of the static method that the alias represents at the source database. (Only meaningful for method aliases and work units.)

Returns:
The name of the static method that the alias represents at the source database.
 o getTargetClassName
 public abstract String getTargetClassName()
Get the name of the class that the alias represents at the target database. (Only meaningful for work units.)

Returns:
The name of the class that the alias represents at the target database.
 o getTargetMethodName
 public abstract String getTargetMethodName()
Get the name of the static method that the alias represents at the target database. (Only meaningful for work units.)

Returns:
The name of the static method that the alias represents at the target database.

  Class Hierarchy        Index