Uses of Interface
org.apache.sis.util.logging.WarningListener
-
Packages that use WarningListener Package Description org.apache.sis.metadata.sql An implementation of Metadata interfaces fetching the data from an SQL database.org.apache.sis.referencing Base classes for reference systems used for general positioning.org.apache.sis.storage Data store base types for retrieving and saving geospatial data in various storage formats.org.apache.sis.storage.event Provides interfaces and classes for dealing with different types of events fired by resources.org.apache.sis.util.logging Extensions to the JDK logging framework. -
-
Uses of WarningListener in org.apache.sis.metadata.sql
Methods in org.apache.sis.metadata.sql with parameters of type WarningListener Modifier and Type Method Description void
MetadataSource. addWarningListener(WarningListener<? super MetadataSource> listener)
Deprecated.WarningListener
to be replaced byFilter
.void
MetadataSource. removeWarningListener(WarningListener<? super MetadataSource> listener)
Deprecated.WarningListener
to be replaced byFilter
. -
Uses of WarningListener in org.apache.sis.referencing
Methods in org.apache.sis.referencing with parameters of type WarningListener Modifier and Type Method Description static CoordinateReferenceSystem
CRS. fromAuthority(CoordinateReferenceSystem crs, CRSAuthorityFactory factory, WarningListener<?> listener)
Deprecated.WarningListener
argument replaced byjava.util.logging.Filter
. -
Uses of WarningListener in org.apache.sis.storage
Methods in org.apache.sis.storage with parameters of type WarningListener Modifier and Type Method Description void
DataStore. addWarningListener(WarningListener<? super DataStore> listener)
Deprecated.Replaced byaddListener(listener, WarningEvent.class)
.void
DataStore. removeWarningListener(WarningListener<? super DataStore> listener)
Deprecated.Replaced byremoveListener(listener, WarningEvent.class)
. -
Uses of WarningListener in org.apache.sis.storage.event
Methods in org.apache.sis.storage.event with parameters of type WarningListener Modifier and Type Method Description void
StoreListeners. addWarningListener(WarningListener listener)
Deprecated.Replaced byaddListener(listener, WarningEvent.class)
.void
StoreListeners. removeWarningListener(WarningListener listener)
Deprecated.Replaced byremoveListener(listener, WarningEvent.class)
. -
Uses of WarningListener in org.apache.sis.util.logging
Methods in org.apache.sis.util.logging that return types with arguments of type WarningListener Modifier and Type Method Description List<WarningListener<? super S>>
WarningListeners. getListeners()
Deprecated.Returns all registered warning listeners, or an empty list if none.Methods in org.apache.sis.util.logging with parameters of type WarningListener Modifier and Type Method Description void
WarningListeners. addWarningListener(WarningListener<? super S> listener)
Deprecated.Adds a listener to be notified when a warning occurred.void
WarningListeners. removeWarningListener(WarningListener<? super S> listener)
Deprecated.Removes a previously registered listener.
-