Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
#56 [api] Add new interface 'FXMLRegisterable'.
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoghuman committed Mar 8, 2019
1 parent ee69581 commit d3e66cc
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
3 changes: 2 additions & 1 deletion release/Release_v0.3.0-PRERELEASE_2019-03-dd_HH-mm.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ and connect them to a controller (called the presenter).


#### Feature
#56 [api] Add new interface 'FXMLRegisterable'.
#45 [api] Create new interface FXMLModelable.



Expand All @@ -20,7 +22,6 @@ and connect them to a controller (called the presenter).
#50 [api] Enhance FXMLModel.get(Class'T', String) to return an Optional'T'.
#48 [test] Enhance the method DefaultFXMLValidator.requireEndsWith(...).
#47 [api] Create 'FXMLModel.EMPTY' instance in the class FXMLModel.
#45 [api] Create new interface FXMLModelable.
#42 [test] Rename the demo applications to fit the necessities from the api.


Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Copyright (C) 2018 - 2019 Naoghuman's dream
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.github.naoghuman.lib.fxml.core;

/**
*
* @since 0.3.0-PRERELEASE
* @version 0.3.0-PRERELEASE
* @author Naoghuman
*/
public interface FXMLRegisterable {

/**
*
* @since 0.3.0-PRERELEASE
* @version 0.3.0-PRERELEASE
* @author Naoghuman
*/
public void register();

}

0 comments on commit d3e66cc

Please sign in to comment.