oh okay, that's fine. i see your point. i suppose i'd prefer it was BookmarkablePageUrlCodingStrategy.
Doug Donohoe wrote: > > To get my name and to be consistent, I simply lopped of the > "UrlCodingStrategy" at the end of the strategy names. Thus the unwieldy > BookmarkablePageRequestTargetUrlCodingStrategy becomes the > MountBookmarkablePageRequestTarget. I'm not sure why that one is such a > mouthful. In essence, I'm just following the established standard. > > If people want, I can change it. > > Fortunately, it is the default when you just use @MountPath by itself, so > you don't currently need to use it. I added it to be complete. Also > note, I chose it as default since that is what WebApplication.mount() > defaults too. > > -Doug > > > Jonathan Locke wrote: >> >> >> neato. but don't you think MountBookmarkablePageRequestTarget could be >> just MountBookmarkable? >> >> >> Doug Donohoe wrote: >>> >>> I am pleased to announce the 1.0 release of wicketstuff-annotation. >>> >>> Full documentation and explanation (e.g., what, why, how) is at the >>> wicket-stuff wiki: >>> >>> http://wicketstuff.org/confluence/display/STUFFWIKI/wicketstuff-annotation >>> >>> A short example is at the end of this email. >>> >>> I would like to thank Mr Mean and Martijn Dashorst for their assistance >>> in getting this project in TeamCity. The process was fairly painless >>> thanks to their work. >>> >>> Our pom.xml is pretty simple, is configured to generate javadoc and >>> depends on wicketstuff-parent. It should be a good example for other >>> wicket-stuff projects (if they need one). >>> >>> Thanks, >>> >>> -Doug Donohoe >>> >>> Use wicketstuff-annotation to use Java Annotations and class path >>> searching to mount your Wicket pages: >>> >>> ======================================================== >>> @MountPath(path = "terms") >>> public class Terms extends WebPage { ... } >>> >>> @MountPath(path = "terms") >>> @MountMixedParam(parameterNames={"sport", "show"}) >>> public class Dogs extends WebPage { ... } >>> ======================================================== >>> public class MyWicketApplication extends WebApplication >>> { >>> @Override >>> protected void init() >>> { >>> new >>> AnnotatedMountScanner().scanPackage("com.acme.wicket.pages").mount(this); >>> } >>> } >>> ======================================================== >>> >> >> > > -- View this message in context: http://www.nabble.com/-announce--wicketstuff-annotation-1.0-released-tp17090601p17093691.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
