You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DeviceView.java 198B

12345678910
  1. package com.example.greenwatch.mvc;
  2. import java.util.Vector;
  3. public class DeviceView {
  4. public void updateView(Vector<Device> deviceVector) {
  5. // todo: what should be displayed
  6. }
  7. }