1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Add since tags.

This commit is contained in:
Markus Schorn 2008-09-17 11:00:18 +00:00
parent 61e982cc55
commit 6c564a4f8c

View file

@ -83,9 +83,15 @@ public final class EntryDescriptor {
public CWizardHandler getHandler() { public CWizardHandler getHandler() {
return handler; return handler;
} }
/**
* @since 5.1
*/
public void setDefaultForCategory(boolean isDefaultForCategory) { public void setDefaultForCategory(boolean isDefaultForCategory) {
this.isDefaultForCategory = isDefaultForCategory; this.isDefaultForCategory = isDefaultForCategory;
} }
/**
* @since 5.1
*/
public boolean isDefaultForCategory() { public boolean isDefaultForCategory() {
return isDefaultForCategory; return isDefaultForCategory;
} }