fixed faux property display order (#359)
Co-authored-by: Georgy Litvinov <georgy.litvinov@tib.eu>
This commit is contained in:
parent
7dabc6b2ab
commit
2873bba81d
2 changed files with 5 additions and 2 deletions
|
@ -162,7 +162,10 @@ public class FauxDataPropertyWrapper extends DataProperty implements FauxPropert
|
||||||
innerDP.setExample(example);
|
innerDP.setExample(example);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getDisplayTier() {
|
||||||
|
return faux.getDisplayTier();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean getFunctional() {
|
public boolean getFunctional() {
|
||||||
|
|
|
@ -372,7 +372,7 @@ public class FauxObjectPropertyWrapper extends ObjectProperty implements FauxPro
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getDomainDisplayTier() {
|
public int getDomainDisplayTier() {
|
||||||
return innerOP.getDomainDisplayTier();
|
return faux.getDisplayTier();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue