Graphic Rendering System
1.0
A Java-based graphic rendering system implementing various design patterns
Loading...
Searching...
No Matches
ShapeObserver.java
Go to the documentation of this file.
1
package
com.example.graphics.observer;
2
3
import
com.example.graphics.model.Shape;
4
9
public
interface
ShapeObserver
{
14
void
onShapeAdded
(
Shape
shape);
15
20
void
onShapeRemoved
(
Shape
shape);
21
26
void
onShapeModified
(
Shape
shape);
27
}
com.example.graphics.model.Shape
Definition
Shape.java:10
com.example.graphics.observer.ShapeObserver
Definition
ShapeObserver.java:9
com.example.graphics.observer.ShapeObserver.onShapeRemoved
void onShapeRemoved(Shape shape)
com.example.graphics.observer.ShapeObserver.onShapeAdded
void onShapeAdded(Shape shape)
com.example.graphics.observer.ShapeObserver.onShapeModified
void onShapeModified(Shape shape)
src
main
java
com
example
graphics
observer
ShapeObserver.java
Generated on
for Graphic Rendering System by
1.14.0