All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zink.scala.fly.stub.FieldInfo.scala Maven / Gradle / Ivy

Go to download

Fly Scala is a scala client library for working with a Fly Server. Fly is an object space server that is specifically written to provide lightweight object based messaging between computers running on a network. This distribution does not contain the server, please go to http://www.flyobjectspace.com/ for the server that matches the version of Fly Scala you want to use.

The newest version!
package com.zink.scala.fly.stub

import java.lang.reflect.Field


case class FieldInfo(theType: String, name: String) {
  def this(field: Field) = this (field.getType.getName, field.getName)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy