Search Results

by dmccue128
Thu Sep 07, 2017 5:46 am
Forum: Java
Topic: Javadoc
Replies: 4
Views: 18361

Re: Javadoc

OK, thank you. I was seeking the Javadoc to help understand the relationship between classes (and the hierarchy) but your explanation is clear and this documentation provides all the information. I am just not familiar with navigating it. Interfaces like VoltageInputVoltageChangeListener are not lis...
by dmccue128
Thu Sep 07, 2017 5:32 am
Forum: Java
Topic: Logging interface
Replies: 2
Views: 14389

Re: Logging interface

Patrick, Thank you, the explanation is very clear.
You are correct the enumeration is present under the documentation for the logging API. I appreciate the help.
by dmccue128
Sun Sep 03, 2017 8:32 pm
Forum: Java
Topic: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?
Replies: 11
Views: 30495

Re: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?

Just to be sure I understand, for InterfaceKit 8/8/8 when I say, ch = new VoltageInput(); ch.setChannel(3); ch.open(5000); this is referring to analog input #3 My digital input might have the same channel number, right? chInput = new DigitalInput(); chInput.setChannel(3); chInput.open(5000); The cha...
by dmccue128
Sun Sep 03, 2017 6:09 am
Forum: Java
Topic: Logging interface
Replies: 2
Views: 14389

Logging interface

Documentation page entitled, "Logging, Exceptions, and Errors", in the section labeled, "Logging", states: "There are five different logging levels, ranging from "Give me Everything!" to "Tell me only about critical problems". CRITICAL...ERROR...WARNING.....
by dmccue128
Sun Sep 03, 2017 5:52 am
Forum: Java
Topic: Javadoc
Replies: 4
Views: 18361

Javadoc

Please post Javadoc for classes in new phidget22 api. I'd like to create a map from my device identifiers to channels but I cannot determine what (if any) common super class of DigitalInput, DigitalOutput, VoltageInput. So I am compelled to create three maps, one for each type and then a fourth map ...