001 /* 002 * file StpVisitor.java 003 * 004 * IBM Confidential 005 * OCO Source Materials 006 * Rational ClearCase 007 * (C) Copyright IBM Corp. 2010. All rights reserved. 008 * 009 * The source code for this program is not published or otherwise 010 * divested of its trade secrets, irrespective of what has been 011 * deposited with the U.S. Copyright Office. 012 */ 013 package com.ibm.rational.wvcm.stpex.annotation.processing; 014 015 import java.util.TreeSet; 016 017 import com.sun.mirror.apt.Filer; 018 019 public interface StpVisitor { 020 021 static class TagInfo { 022 023 String id = null; 024 String ns = null; 025 String simple = null; 026 String fieldName = null; 027 String position = null; 028 } 029 030 void begin(); 031 void end(); 032 }