W039 Missing Interface
[Previous]  [Next] 
|
User Manual [Previous]  [Next] W039 Missing InterfaceUmple semantic warning issued when a referenced interface is not foundIf an interface extends a second interface, that second interface must exist in the system. It can also be declared as external to the class, if it has been defined externally to the code. Example//Since B is not defined, //the warning will be generated interface A { isA B; } Load the above code into UmpleOnline Solution to The Above So the Message No Longer Appears//The problem can be solved by //defining B interface A { isA B; } interface B {} Load the above code into UmpleOnline |