
| Key: |
FWK-110
|
| Type: |
Bug
|
| Status: |
Open
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Sergey Tchuvilin
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Gimpy(String question, BufferedImage challenge, String response, boolean caseSensitive) {
super(question, challenge);
this.response = response;
this.caseSensitive=caseSensitive;
}
Gimpy(String question, BufferedImage challenge, String response) {
this(question, challenge, response, true);
}
they have package scope, but need to be public or protected. Sometimes there is need to create own Factories overriding some methods in this class.
|
|
Description
|
Gimpy(String question, BufferedImage challenge, String response, boolean caseSensitive) {
super(question, challenge);
this.response = response;
this.caseSensitive=caseSensitive;
}
Gimpy(String question, BufferedImage challenge, String response) {
this(question, challenge, response, true);
}
they have package scope, but need to be public or protected. Sometimes there is need to create own Factories overriding some methods in this class. |
Show » |
Sort Order:
| There are no comments yet on this issue.
|
|