This is a discussion on Validation API in an OutlineView and Properties Window - Solaris Rss ; Tim's Validation API (which is in the "ide" cluster in your NetBeans IDE installation directory), in action in an OutlineView: And in the Properties window: To achieve the above, you need to create an InPlaceEditor for your Property. (In the ...
Tim's Validation API (which is in the "ide" cluster in your NetBeans IDE installation directory), in action in an OutlineView:
![]()
And in the Properties window:
![]()
To achieve the above, you need to create an InPlaceEditor for your Property. (In the example above, I use a JTextField.) Within the InPlaceEditor's constructor, I simply have this: ValidationPanel panel = new ValidationPanel(); ValidationGroup group = panel.getValidationGroup(); group.add( textField, Validators.REQUIRE_NON_EMPTY_STRING, Validators.NO_WHITESPACE, Validators.URL_MUST_BE_VALID);
...which is copied from here:
http://netbeans.dzone.com/news/how-q...add-validation
Read More about [Validation API in an OutlineView and Properties Window...