MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
com.mysql.clusterj.jpatest.model.Embedding Class Reference
Inheritance diagram for com.mysql.clusterj.jpatest.model.Embedding:
Collaboration diagram for com.mysql.clusterj.jpatest.model.Embedding:

Public Member Functions

int getId ()
void setId (int id)
int getMagic ()
void setMagic (int magic)
Embedded getEmbedded ()
void setEmbedded (Embedded embedded)
String toString ()

Detailed Description

An Entity test class that has an embedded class.

drop table if exists t_basic; create table t_basic ( id int not null, name varchar(32), // embedded age int, // embedded magic int not null, primary key(id)) engine=ndbcluster; create unique index idx_unique_hash_magic using hash on t_basic(magic); create index idx_btree_age on t_basic(age);

Definition at line 44 of file Embedding.java.


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