ing discovery result

This commit is contained in:
snoop 2018-03-20 19:32:36 +09:00
parent 4ae2106219
commit a188d377c0

View File

@ -145,14 +145,30 @@ export class SettingComponent implements OnInit, AfterContentInit {
findHost(host) {
const jHost: any = {
title: 'Host - ' + host.ip,
className : 'cn' + host.ip
};
jHost.obj = host;
}
findPort(port) {
const jPort: any = {
title: 'Port - ' + port.portNumber,
className : 'cn' + port.portNumber,
};
jPort.obj = port;
}
findService(service) {
const jService: any = {
title: 'Service - ' + service.serviceName,
className : 'cn' + service.serviceName,
};
jService.obj = service;
}
}