~francis-giraldeau/noesis/xsugar-strict

« back to all changes in this revision

Viewing changes to src/dk/brics/xsugar/stylesheet/Value.java

  • Committer: Francis Giraldeau
  • Date: 2009-08-05 13:07:07 UTC
  • Revision ID: francis.giraldeau@revolutionlinux.com-20090805130707-b8p8x13khol5p9o5
ajout des sources

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package dk.brics.xsugar.stylesheet;
 
2
 
 
3
/**
 
4
 * Interface for attribute values.
 
5
 */
 
6
public interface Value {
 
7
 
 
8
        /**
 
9
         * Visits this node.
 
10
         * @param visitor visitor
 
11
         */
 
12
        void visit(Visitor visitor);
 
13
}