You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
349 B
17 lines
349 B
package de.memtext.observ; |
|
|
|
import java.io.Serializable; |
|
import java.util.Observable; |
|
|
|
/** |
|
* Rather silly, but for some reason Java complained |
|
* that the setChanged() method was not visible |
|
*/ |
|
|
|
public class MyObservable extends Observable implements Serializable { |
|
|
|
public void markChanged() { |
|
super.setChanged(); |
|
} |
|
|
|
}
|
|
|