OLFT & OLFT4J Project Summary

  1.  /*
  2.   * What's OLFT?
  3.   * This is the result of OLFT's Java Module.
  4.   * It makes the online reading comfortable. At least ,I think so.
  5.   */
  6. package com.trydofor.olft.impls;
  7. import java.util.*;
  8. public class OLFT4J implements OLFT{
  9.      /*
  10.       * OLFT can syntax highlighting and bracket matching.
  11.       */
  12.      public static Hashtable POOL = new Hashtable()//JDK's class
  13.      private int port = 1009//number
  14.      private final String info = "this is a test of OLFT";// string
  15.      private boolean isFresh = true;
  16.      private Object locker  = new Object();
  17.      
  18.      private void build(StringBuffer content){
  19.          if(isFresh){
  20.              synchronized(locker){
  21.                  if(isFresh){
  22.                      POOL.put("another string",content);
  23.                      isFresh = false;
  24.                  }
  25.              }
  26.          }
  27.      }
  28.      
  29.      public String getInfo(){
  30.          return info;
  31.      }
  32.      
  33.      public static void main(String[] args){
  34.          try {
  35.              if(args.length!=2){
  36.                  System.out.println("use: [u|i|j] fileName");
  37.                  System.exit(1);
  38.              }else{
  39.                  switch(args[0].charAt(0)){
  40.                      case 'u':
  41.                      break;
  42.                      case 'i':
  43.                      break;
  44.                      case 'j':
  45.                      break;
  46.                      default:
  47.                          System.out.println("use: [u|i|j] fileName");
  48.                          System.exit(1);
  49.                  }
  50.              }
  51.          } catch (Exception e) {
  52.              //ignore
  53.          }finally{
  54.              //ignore
  55.          }
  56.      }
  57.  }

SourceForge.net Logo By trydofor @ trydofor.com 2004