Package com.hp.jena.rules.ast

Examples of com.hp.jena.rules.ast.StringInLanguage


    public static StringInLanguage stringInLanguage( String label )
        {
        int atPos = label.indexOf( '@' );
        return atPos < 0
            ? new StringInLanguage( label )
            : new StringInLanguage( label.substring( 0, atPos ), label.substring( atPos + ) )            ;
        }
View Full Code Here

TOP

Related Classes of com.hp.jena.rules.ast.StringInLanguage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.