914 |
} |
} |
915 |
|
|
916 |
/** |
/** |
917 |
|
* *If appended to the name of a rule, this rule shall not be shown in the |
918 |
|
* legend |
919 |
|
*/ |
920 |
|
public final static String HIDE_IN_LAYER_LEGEND_HINT = "HIDE_IN_LEGEND"; |
921 |
|
|
922 |
|
/** |
923 |
* Creates a {@link JPanel} that shows a legend for a list of |
* Creates a {@link JPanel} that shows a legend for a list of |
924 |
* {@link FeatureTypeStyle}s and a targeted featureType |
* {@link FeatureTypeStyle}s and a targeted featureType |
925 |
* |
* |
950 |
final List<Rule> rules = ftStyle.rules(); |
final List<Rule> rules = ftStyle.rules(); |
951 |
for (final Rule rule : rules) { |
for (final Rule rule : rules) { |
952 |
|
|
953 |
|
// Check if this RULE shall actually appear in the legend |
954 |
|
if (rule.getName().endsWith(HIDE_IN_LAYER_LEGEND_HINT)) |
955 |
|
continue; |
956 |
|
|
957 |
/** |
/** |
958 |
* Let's not create a hbox for Rules that only contain |
* Let's not create a hbox for Rules that only contain |
959 |
* TextSymbolizers |
* TextSymbolizers |