public void apply()

in facet_basics/src/main/java/org/intellij/sdk/facet/DemoFacetEditorTab.java [83:91]


  public void apply() throws ConfigurationException {
    // Not much to go wrong here, but fulfill the contract
    try {
      String newTextContent = myPath.getText();
      mySettings.setDemoFacetState(newTextContent);
    } catch (Exception e) {
      throw new ConfigurationException(e.toString());
    }
  }