画饼
This commit is contained in:
17
src/main/java/com/ilummc/tlib/bean/BooleanProperty.java
Normal file
17
src/main/java/com/ilummc/tlib/bean/BooleanProperty.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.ilummc.tlib.bean;
|
||||
|
||||
import java.util.function.BiConsumer;
|
||||
|
||||
public class BooleanProperty {
|
||||
|
||||
private boolean property;
|
||||
|
||||
public BooleanProperty(boolean property) {
|
||||
this.property = property;
|
||||
}
|
||||
|
||||
public void addListener(BiConsumer<Boolean, Boolean> consumer) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
4
src/main/java/com/ilummc/tlib/bean/Property.java
Normal file
4
src/main/java/com/ilummc/tlib/bean/Property.java
Normal file
@@ -0,0 +1,4 @@
|
||||
package com.ilummc.tlib.bean;
|
||||
|
||||
public class Property {
|
||||
}
|
||||
Reference in New Issue
Block a user