1
2
3
4
5
6
7
8
9
10
11
12 package sk.uniba.euromath.editor.textEditor.requests;
13
14 /***
15 * Determines request specialization within request group determined by
16 * Request.getType(). Commonly specialization is fixed for one Request subclass.
17 *
18 * @author Tomáš Studva 30.1.2006
19 */
20 public interface IRequestSpecialization {
21
22 /***
23 * TODO Kollar ocakavam navrhy na zmenu mena tejto metody, ale getAction sa
24 * mi zda byt metuce, lebo od getAction() by som cakal ze vrati nejaku
25 * akciu. Ak suhlasis s menom tejto metody, staci ze zmazes toto TODO Return
26 * request specialization unique string.
27 *
28 * @return request specialization string
29 */
30 public String getSpecialization();
31 }