test v2
This commit is contained in:
13
V2/snippet API V2.txt
Normal file
13
V2/snippet API V2.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* Changes to the V1 API
|
||||
*/
|
||||
public Set<Part> getSelectedParts();
|
||||
public Optional<Part> getSelectionForCategory(Category category);
|
||||
and for Part.java :
|
||||
public interface Part extends PropertyManager {
|
||||
default String getName() {
|
||||
return this.getClass().getTypeName();
|
||||
};
|
||||
Category getCategory();
|
||||
PartType getType();
|
||||
}
|
||||
Reference in New Issue
Block a user