Emerjoin / Hi-Framework-features

Java EE Framework
5 stars 1 forks source link

Consider frontier package-name #83

Open emjunior258 opened 8 years ago

emjunior258 commented 8 years ago
package my.package;

@Frontier(fqdn=true)
public class MyFrontier{

         public String formatStr(String val){
                //implementation comes here    
         }
          //more frontier code goes here

}
//Calling frontier from javascript

my.package.MyFrontier.formatStr("The Value").try(function(result){

     //do something
});