Moved the code in the "tests" plugin (plural) to the "test" fragment (singular)....
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / model / Index.java
1 package com.quantum.model;
2
3 /**
4  * @author BC
5  */
6 public interface Index {
7     public String getName();
8     public int getNumberOfColumns();
9     public String getColumnName(int ordinalPosition);
10     public Entity getParentEntity();
11     public boolean isAscending(int ordinalPosition);
12     public boolean isDescending(int ordinalPosition);
13 }