blob: 098baf39206c81f874b2506fcf68309800f253b1 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
namespace org.apache.plc4net.model
{
/// <summary>
/// Base type for all field types.
/// Typically every driver provides an implementation of this interface in order
/// to be able to describe the fields of a resource.As this is completely tied to
/// the implemented protocol, this base interface makes absolutely no assumption to
/// any information it should provide.
/// In order to stay platform and protocol independent every driver connection implementation
/// provides a prepareField(String) method that is able to parse a string representation of
/// a resource into it's individual field type. Manually constructing PlcField objects
/// manually makes the solution less independent from the protocol, but might be faster.
/// </summary>
public interface IPlcField
{
}
}