Skip to content

Instantly share code, notes, and snippets.

@gitmatheus
Created June 27, 2017 13:30
Show Gist options
  • Save gitmatheus/d464bd1fb1dc5ae71c7e12eaaeb30283 to your computer and use it in GitHub Desktop.
Save gitmatheus/d464bd1fb1dc5ae71c7e12eaaeb30283 to your computer and use it in GitHub Desktop.
public class ParentComponentController {
public String controllerValue;
public void setControllerValue (String s) {
controllerValue = s.toUpperCase();
}
public String getControllerValue() {
return controllerValue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment