Ignore:
Timestamp:
2017-06-09T22:22:27+02:00 (7 years ago)
Author:
michael2402
Message:

Document the gui.mappaint.mapcss package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Instruction.java

    r12259 r12379  
    1313/**
    1414 * A MapCSS Instruction.
    15  * 
     15 *
    1616 * For example a simple assignment like <code>width: 3;</code>, but may also
    1717 * be a set instruction (<code>set highway;</code>).
     
    2727    void execute(Environment env);
    2828
     29    /**
     30     * A float value that will be added to the current float value. Specified as +5 or -3 in MapCSS
     31     */
    2932    class RelativeFloat {
    3033        public final float val;
     
    4043    }
    4144
     45    /**
     46     * An instruction that assigns a given value to a variable on evaluation
     47     */
    4248    class AssignmentInstruction implements Instruction {
    4349        public final String key;
Note: See TracChangeset for help on using the changeset viewer.