Fixed type hierarchy problem on command-executor-object api level
parent
7438de77ef
commit
f02b304cd7
@ -0,0 +1,9 @@
|
||||
package link.pagan.traqtor._api;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Edward M. Kagan {@literal <}kaganem{@literal @}2pm.tech{@literal >}
|
||||
*/
|
||||
abstract class Commanded<SELF extends Commanded<SELF>> {
|
||||
|
||||
}
|
||||
@ -1,20 +1,14 @@
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package link.pagan.traqtor.schema.data.mapping;
|
||||
|
||||
import link.pagan.traqtor.util.Named;
|
||||
import java.util.List;
|
||||
import link.pagan.traqtor.schema.data.mapping.MappingEntry;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Edward M. Kagan {@literal <}kaganem{@literal @}2pm.tech{@literal >}
|
||||
*/
|
||||
public interface MappingSchema extends Named {
|
||||
|
||||
|
||||
public List<MappingEntry> getMappings ();
|
||||
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue