Initial Commit

This commit is contained in:
Dobie Wollert
2012-11-12 00:44:22 -08:00
parent f1c502e4f8
commit 07762668f2
1282 changed files with 29158 additions and 0 deletions

View File

@ -0,0 +1,23 @@
package com.biomed.client.place;
import com.google.gwt.place.shared.PlaceTokenizer;
import com.google.gwt.place.shared.Prefix;
public final class ViewWorkordersPlace extends WorkordersPlace {
public static final ViewWorkordersPlace INSTANCE = new ViewWorkordersPlace();
private ViewWorkordersPlace() { }
@Prefix("workorders")
public static class Tokenizer implements PlaceTokenizer<ViewWorkordersPlace> {
@Override
public ViewWorkordersPlace getPlace(String token) {
return ViewWorkordersPlace.INSTANCE;
}
@Override
public String getToken(ViewWorkordersPlace place) {
return "";
}
}
}