mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
7 lines
223 B
Plaintext
7 lines
223 B
Plaintext
// a class definition that does something with things that extend PApplet
|
|
class Heythere<T extends PApplet>{
|
|
}
|
|
|
|
// method definition which can do things with papplet
|
|
public <T extends PApplet> void doSomething( T thing ){
|
|
} |