org.gradle.api.internal.model.InstantiatorBackedObjectFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2017 the original author or authors.
*
* Licensed 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.
*/
package org.gradle.api.internal.model;
import org.gradle.api.DomainObjectSet;
import org.gradle.api.ExtensiblePolymorphicDomainObjectContainer;
import org.gradle.api.Named;
import org.gradle.api.NamedDomainObjectContainer;
import org.gradle.api.NamedDomainObjectFactory;
import org.gradle.api.NamedDomainObjectList;
import org.gradle.api.NamedDomainObjectSet;
import org.gradle.api.artifacts.dsl.DependencyCollector;
import org.gradle.api.file.ConfigurableFileCollection;
import org.gradle.api.file.ConfigurableFileTree;
import org.gradle.api.file.DirectoryProperty;
import org.gradle.api.file.RegularFileProperty;
import org.gradle.api.file.SourceDirectorySet;
import org.gradle.api.internal.provider.DefaultListProperty;
import org.gradle.api.internal.provider.DefaultProperty;
import org.gradle.api.internal.provider.PropertyHost;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.ListProperty;
import org.gradle.api.provider.MapProperty;
import org.gradle.api.provider.Property;
import org.gradle.api.provider.SetProperty;
import org.gradle.api.reflect.ObjectInstantiationException;
import org.gradle.internal.reflect.Instantiator;
public class InstantiatorBackedObjectFactory implements ObjectFactory {
private final Instantiator instantiator;
public InstantiatorBackedObjectFactory(Instantiator instantiator) {
this.instantiator = instantiator;
}
@Override
public T named(Class type, String name) throws ObjectInstantiationException {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing named objects");
}
@Override
public SourceDirectorySet sourceDirectorySet(String name, String displayName) {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing source directory sets");
}
@Override
public ConfigurableFileCollection fileCollection() {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing file collections");
}
@Override
public ConfigurableFileTree fileTree() {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing file trees");
}
@Override
public NamedDomainObjectContainer domainObjectContainer(Class elementType) {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing named domain object containers");
}
@Override
public NamedDomainObjectContainer domainObjectContainer(Class elementType, NamedDomainObjectFactory factory) {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing named domain object containers");
}
@Override
public ExtensiblePolymorphicDomainObjectContainer polymorphicDomainObjectContainer(Class elementType) {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing named domain object containers");
}
@Override
public DomainObjectSet domainObjectSet(Class elementType) {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing domain object sets");
}
@Override
public NamedDomainObjectSet namedDomainObjectSet(Class elementType) {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing named domain object sets");
}
@Override
public NamedDomainObjectList namedDomainObjectList(Class elementType) {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing named domain object lists");
}
@Override
public Property property(Class valueType) {
return new DefaultProperty<>(PropertyHost.NO_OP, valueType);
}
@Override
public ListProperty listProperty(Class elementType) {
return new DefaultListProperty<>(PropertyHost.NO_OP, elementType);
}
@Override
public SetProperty setProperty(Class elementType) {
return broken();
}
@Override
public MapProperty mapProperty(Class keyType, Class valueType) {
return broken();
}
@Override
public DirectoryProperty directoryProperty() {
return broken();
}
@Override
public RegularFileProperty fileProperty() {
return broken();
}
@Override
public DependencyCollector dependencyCollector() {
return broken();
}
private T broken() {
throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing property objects");
}
@Override
public T newInstance(Class extends T> type, Object... parameters) throws ObjectInstantiationException {
return instantiator.newInstance(type, parameters);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy