API: make Rule members public

This commit is contained in:
Hannes Janetzek 2014-04-27 21:48:10 +02:00
parent 64383a8406
commit c9bd08dcdf

View File

@ -46,13 +46,13 @@ public class Rule {
public final static RenderStyle[] EMPTY_STYLE = new RenderStyle[0]; public final static RenderStyle[] EMPTY_STYLE = new RenderStyle[0];
public final static Rule[] EMPTY_RULES = new Rule[0]; public final static Rule[] EMPTY_RULES = new Rule[0];
private final Rule[] subRules; public final Rule[] subRules;
public final RenderStyle[] styles; public final RenderStyle[] styles;
private final int zoom; public final int zoom;
private final int element; public final int element;
private final boolean selectFirstMatch; public final boolean selectFirstMatch;
private final boolean selectWhenMatched; public final boolean selectWhenMatched;
Rule(int element, int zoom, int selector, Rule[] subRules, RenderStyle[] styles) { Rule(int element, int zoom, int selector, Rule[] subRules, RenderStyle[] styles) {
this.element = element; this.element = element;
@ -65,7 +65,7 @@ public class Rule {
selectWhenMatched = (selector & Selector.WHEN_MATCHED) != 0; selectWhenMatched = (selector & Selector.WHEN_MATCHED) != 0;
} }
boolean matchesTags(Tag[] tags) { public boolean matchesTags(Tag[] tags) {
return true; return true;
} }
@ -181,7 +181,7 @@ public class Rule {
} }
@Override @Override
boolean matchesTags(Tag[] tags) { public boolean matchesTags(Tag[] tags) {
for (Tag tag : tags) for (Tag tag : tags)
if (mKey == tag.key) if (mKey == tag.key)
return true; return true;
@ -200,7 +200,7 @@ public class Rule {
} }
@Override @Override
boolean matchesTags(Tag[] tags) { public boolean matchesTags(Tag[] tags) {
for (Tag tag : tags) for (Tag tag : tags)
if (mValue == tag.value) if (mValue == tag.value)
return true; return true;
@ -222,7 +222,7 @@ public class Rule {
} }
@Override @Override
boolean matchesTags(Tag[] tags) { public boolean matchesTags(Tag[] tags) {
for (Tag tag : tags) for (Tag tag : tags)
if (mKey == tag.key) if (mKey == tag.key)
return (mValue == tag.value); return (mValue == tag.value);
@ -252,7 +252,7 @@ public class Rule {
} }
@Override @Override
boolean matchesTags(Tag[] tags) { public boolean matchesTags(Tag[] tags) {
if (mKeys == null) { if (mKeys == null) {
for (Tag tag : tags) { for (Tag tag : tags) {
for (String value : mValues) { for (String value : mValues) {