Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/alicebot/server/core/util/Tag.java


1   // Decompiled by Jad v1.5.8c. Copyright 2001 Pavel Kouznetsov.
2   // Jad home page: http://www.geocities.com/kpdus/jad.html
3   // Decompiler options: packimports(3) 
4   
5   package org.alicebot.server.core.util;
6   
7   
8   public class Tag
9   {
10  
11      public Tag(String s)
12      {
13          name = s;
14          toString = "<" + s + ">";
15      }
16  
17      public String toString()
18      {
19          return toString;
20      }
21  
22      public String getName()
23      {
24          return name;
25      }
26  
27      private static final String LEFT_ANGLE_BRACKET = "<";
28      private static final String RIGHT_ANGLE_BRACKET = ">";
29      private String name;
30      private String toString;
31  }