Skip to content
Snippets Groups Projects
Select Git revision
  • 3ca451b198e9651ec00dc12fad8435fa127dfd72
  • master default
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.1
  • v2014.0
  • v2013.0
10 results

Version.jrag

Blame
  • Forked from Anders Blomdell / LabComm
    Source project has a limited visibility.
    Version.jrag 397 B
    aspect Version {
    
        /* An auxilliary class for handling naming and prefixes connected
         * to the LabComm version
         */
        class LabCommVersion {
            public static String versionString(int version) {
                return (version == 2006) ? "2006" : "";
            }       
    
            public static boolean versionHasPragma(int version) {
                return version != 2006;
            }
        }
    }