Reputation: 1470
Structured Classifier is a concept related to Modeling Language like UML(Unified Modeling Language) which contains Parts or Roles that form its data Structure and realize its behavior.
What is the corresponding of structured classifier in Programming Language like Java?
Upvotes: 2
Views: 232
Reputation: 5864
Structured Classifier is an abstract concept, with no direct counterpart in JAVA. However, you can create a JAVA class structure that mimics its organization and concepts.
Here is the example of Structured Classifier, taken from the formal UML spec:
What makes the class Car a Structured Classifier is its internal structure made up of a network of connected object in a strictly defined way (roles).
To implement this in Java, you first need to:
Upvotes: 3
Reputation: 1260
Your description is not really clear, and browsing over the web I got a slightly more structured definition:
A structured classifier is an abstract metaclass that represents any classifier whose behavior can be fully or partly described by the collaboration of owned or referenced instances.
If that is the case, I guess you can have an organised structure of interfaces or abstract classes to reach some thing similar...
Hope this helps.
Upvotes: 1