|
Last change
on this file since 3980 was 3893, checked in by bastiK, 15 years ago |
|
mapcss: some rework of Error Handling, (Multi)Cascade and icon loading
|
-
Property svn:eol-style
set to
native
|
|
File size:
501 bytes
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file.
|
|---|
| 2 | package org.openstreetmap.josm.gui.mappaint;
|
|---|
| 3 |
|
|---|
| 4 | import org.openstreetmap.josm.data.osm.OsmPrimitive;
|
|---|
| 5 |
|
|---|
| 6 | public class Environment {
|
|---|
| 7 |
|
|---|
| 8 | public OsmPrimitive osm;
|
|---|
| 9 | public MultiCascade mc;
|
|---|
| 10 | public String layer;
|
|---|
| 11 | public StyleSource source;
|
|---|
| 12 |
|
|---|
| 13 | public Environment(OsmPrimitive osm, MultiCascade mc, String layer, StyleSource source) {
|
|---|
| 14 | this.osm = osm;
|
|---|
| 15 | this.mc = mc;
|
|---|
| 16 | this.layer = layer;
|
|---|
| 17 | this.source = source;
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.