Ver Fonte

add method to get default translation

Daniel Sheffield há 2 anos atrás
pai
commit
5b09505fd3
2 ficheiros alterados com 5 adições e 1 exclusões
  1. 1 1
      pom.xml
  2. 4 0
      src/main/java/PlJavaJSword.java

+ 1 - 1
pom.xml

@@ -10,7 +10,7 @@
 
   <groupId>one.shandan</groupId>
   <artifactId>pljava-jsword</artifactId>
-  <version>0.0.4-SNAPSHOT</version>
+  <version>0.1.0-SNAPSHOT</version>
 
   <!-- Coordinates are nice, but so are names and descriptions for humans. -->
 

+ 4 - 0
src/main/java/PlJavaJSword.java

@@ -116,5 +116,9 @@ public class PlJavaJSword {
       return null;
     }
   }
+  @Function(effects=IMMUTABLE, trust=SANDBOXED)
+  public static String getDefaultTranslation(){
+    return DEFAULT_BOOK;
+  }
 }