com.android.manifmerger.Selector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of manifest-merger Show documentation
Show all versions of manifest-merger Show documentation
A Library to merge Android manifests.
/*
* Copyright (C) 2014 The Android Open Source Project
*
* 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 com.android.manifmerger;
import com.android.annotations.NonNull;
import com.android.annotations.concurrency.Immutable;
import com.google.common.base.Optional;
import com.google.common.base.Preconditions;
/**
* Represents a selector to be able to identify manifest file xml elements.
*/
@Immutable
public class Selector {
/**
* local name for tools:selector attributes.
*/
public static final String SELECTOR_LOCAL_NAME = "selector";
@NonNull private final String mPackageName;
public Selector(@NonNull String packageName) {
mPackageName = Preconditions.checkNotNull(packageName);
}
/**
* Returns true if the passed element is "selected" by this selector. If so, any action this
* selector decorated will be applied to the element.
*/
boolean appliesTo(@NonNull XmlElement element) {
Optional packageName = element.getDocument().getPackage();
return packageName.isPresent() && mPackageName.equals(packageName.get().getValue());
}
/**
* Returns true if the passed resolver can resolve this selector, false otherwise.
*/
boolean isResolvable(@NonNull KeyResolver resolver) {
return resolver.resolve(mPackageName) != null;
}
@NonNull
@Override
public String toString() {
return mPackageName;
}
}