Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add circular reference example for Eclipse bug report.
  • Loading branch information
Stephen Haberman committed Feb 18, 2010
1 parent e3cb80f commit 0dccdf0
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
17 changes: 17 additions & 0 deletions examples/src/main/java/org/interfacegen/examples/circular/One.java
@@ -0,0 +1,17 @@
package org.interfacegen.examples.circular;

import org.interfacegen.GenInterface;
import org.interfacegen.examples.circular.foo.ITwo;

@GenInterface
public class One implements IOne {
@Override
public ITwo getTwo() {
return null;
}

@Override
public IThree getThree() {
return null;
}
}
@@ -0,0 +1,7 @@
package org.interfacegen.examples.circular;

import org.interfacegen.GenInterface;

@GenInterface
public class Three implements IThree {
}
@@ -0,0 +1,7 @@
package org.interfacegen.examples.circular.foo;

import org.interfacegen.GenInterface;

@GenInterface
public class Two implements ITwo {
}

0 comments on commit 0dccdf0

Please sign in to comment.