Skip to content

Commit

Permalink
MONDRIAN: Adds the visible property to Dimension tree elements.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 14684]
  • Loading branch information
lucboudreau committed Oct 11, 2011
1 parent 54b2bd3 commit fb999ab
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main/mondrian/gui/SchemaExplorer.java
Expand Up @@ -5431,10 +5431,10 @@ public void showMenu(MouseEvent e) {
"aggregator",
"column",
"formatString",
"visible",
"datatype",
"formatter",
"caption"
"caption",
"visible"
};

static final String[] DEF_CALCULATED_MEMBER = {
Expand Down Expand Up @@ -5499,7 +5499,8 @@ public void showMenu(MouseEvent e) {
"name", "foreignKey", "source", "level",
"usagePrefix", "caption", "visible"};
static final String[] DEF_DIMENSION = {
"name", "description", "foreignKey", "type", "usagePrefix", "caption"};
"name", "description", "foreignKey", "type",
"usagePrefix", "caption", "visible"};
static final String[] DEF_CUBE = {"name", "description", "caption",
"cache", "enabled", "visible"};
static final String[] DEF_ROLE = {"name"};
Expand Down

0 comments on commit fb999ab

Please sign in to comment.