DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Sql.Tables.RawTableInfo.RawTableItem Class Reference
Inheritance diagram for Deveel.Data.Sql.Tables.RawTableInfo.RawTableItem:

Public Member Functions

 RawTableItem (IRootTable table)
 
 RawTableItem (IRootTable table, IList< int > rows)
 
int CompareTo (RawTableItem other)
 

Properties

IRootTable Table [get, private set]
 
IList< int > Rows [get, private set]
 

Detailed Description

Definition at line 246 of file RawTableInfo.cs.

Constructor & Destructor Documentation

Deveel.Data.Sql.Tables.RawTableInfo.RawTableItem.RawTableItem ( IRootTable  table)
inline

Definition at line 247 of file RawTableInfo.cs.

248  : this(table, new List<int>()) {
249  }
Deveel.Data.Sql.Tables.RawTableInfo.RawTableItem.RawTableItem ( IRootTable  table,
IList< int >  rows 
)
inline

Definition at line 251 of file RawTableInfo.cs.

251  {
252  Table = table;
253  Rows = new List<int>(rows);
254  }

Member Function Documentation

int Deveel.Data.Sql.Tables.RawTableInfo.RawTableItem.CompareTo ( RawTableItem  other)
inline

Definition at line 260 of file RawTableInfo.cs.

260  {
261  return Table.GetHashCode() - other.Table.GetHashCode();
262  }

Property Documentation

IList<int> Deveel.Data.Sql.Tables.RawTableInfo.RawTableItem.Rows
getprivate set

Definition at line 258 of file RawTableInfo.cs.

IRootTable Deveel.Data.Sql.Tables.RawTableInfo.RawTableItem.Table
getprivate set

Definition at line 256 of file RawTableInfo.cs.


The documentation for this class was generated from the following file: