Introduction
Here is the source code for Main.java
Source
//package com.java2s;
// License: GPL. Copyright 2007 by Dave Hansen and others
public class Main {
public static boolean tagIsInt(String name) {
if (name.equals("tiger:tlid"))
return true;
return false;
}
}