Ignore:
Timestamp:
2017-05-26T01:12:46+02:00 (7 years ago)
Author:
bastiK
Message:

see #14794 - javadoc

File:
1 edited

Legend:

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

    r10600 r12259  
    1111import org.openstreetmap.josm.gui.mappaint.StyleKeys;
    1212
     13/**
     14 * A MapCSS Instruction.
     15 *
     16 * For example a simple assignment like <code>width: 3;</code>, but may also
     17 * be a set instruction (<code>set highway;</code>).
     18 * A MapCSS {@link MapCSSRule.Declaration} is a list of instructions.
     19 */
    1320@FunctionalInterface
    1421public interface Instruction extends StyleKeys {
    1522
     23    /**
     24     * Execute the instruction in the given environment.
     25     * @param env the environment
     26     */
    1627    void execute(Environment env);
    1728
Note: See TracChangeset for help on using the changeset viewer.