Skip to content

Commit

Permalink
Added first support for generic types
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Winterhalter committed May 11, 2015
1 parent 5ae3ccc commit 35860f3
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
@@ -1,9 +1,11 @@
package net.bytebuddy.description.type;
package net.bytebuddy.description;

import net.bytebuddy.description.type.TypeDescription;

/**
* This interface represents all elements that can be declared within a type, i.e. other types and type members.
*/
public interface DeclaredInType {
public interface DeclaredByType {

/**
* Returns the declaring type of this instance.
Expand Down
@@ -0,0 +1,5 @@
package net.bytebuddy.description.type.generic;

public interface GenericType {

}
@@ -0,0 +1,5 @@
package net.bytebuddy.description.type.generic;

public interface GenericTypeList {

}
@@ -0,0 +1,5 @@
package net.bytebuddy.description.type.generic;

public interface TypeVariableSource {

}

0 comments on commit 35860f3

Please sign in to comment.