Skip to content
Snippets Groups Projects
Commit 90fc7133 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add type to usage

parent b2a6a85f
No related branches found
No related tags found
1 merge request!221Add GMM Type
...@@ -387,12 +387,14 @@ class ServiceUtil { ...@@ -387,12 +387,14 @@ class ServiceUtil {
final String id; final String id;
final String label; final String label;
final Gmm.Type type;
final ArrayList<String> supportedImts; final ArrayList<String> supportedImts;
final Constraints constraints; final Constraints constraints;
Value(Gmm gmm) { Value(Gmm gmm) {
this.id = gmm.name(); this.id = gmm.name();
this.label = gmm.toString(); this.label = gmm.toString();
this.type = gmm.type();
this.supportedImts = supportedImts(gmm.supportedImts()); this.supportedImts = supportedImts(gmm.supportedImts());
this.constraints = gmm.constraints(); this.constraints = gmm.constraints();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment