Index: /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/data/PTStop.java
===================================================================
--- /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/data/PTStop.java	(revision 33497)
+++ /applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/data/PTStop.java	(revision 33498)
@@ -33,4 +33,10 @@
     /* the name of this stop */
     private String name = "";
+
+    /* indicates a stop where people can only exit the bus */
+    private boolean exitOnly;
+
+    /* indicates a stop where people can only entry the bus */
+    private boolean entryOnly;
 
     /**
@@ -238,3 +244,19 @@
         this.stopPositionRM = stopPositionRM;
     }
+
+    public boolean getExitOnly() {
+        return exitOnly;
+    }
+
+    public void setExitOnly(boolean exitOnly) {
+        this.exitOnly = exitOnly;
+    }
+
+    public boolean getEntryOnly() {
+        return entryOnly;
+    }
+
+    public void setEntryOnly(boolean entryOnly) {
+        this.entryOnly = entryOnly;
+    }
 }
