Skip to content

Commit

Permalink
#41 Add failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
timowest committed Mar 5, 2013
1 parent ff3811a commit 646f9c8
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions scalagen/src/test/scala/com/mysema/examples/Concept.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package com.mysema.examples;

public final class Concept extends Item {

private Object term;
private Object memory;

public Concept(Object tm, Object memory) {
super(tm.toString());
term = tm;
this.memory = memory;
}

public Object getTerm() {
return term;
}

public void setTerm(Object term) {
this.term = term;
}

public Object getMemory() {
return memory;
}

public void setMemory(Object memory) {
this.memory = memory;
}

}

class Item {

public Item(String str) {
// TODO Auto-generated constructor stub
}
}

0 comments on commit 646f9c8

Please sign in to comment.