
com.simpligility.maven.plugins.androidndk.configuration.AdditionallyBuiltModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-ndk-maven-plugin Show documentation
Show all versions of android-ndk-maven-plugin Show documentation
Maven Plugin for Android Development with the NDK
The newest version!
package com.simpligility.maven.plugins.androidndk.configuration;
/**
* @author
*/
public class AdditionallyBuiltModule
{
String name;
String fileName;
String type;
String classifier;
public String getName()
{
return name;
}
public void setName( final String name )
{
this.name = name;
}
public String getClassifier()
{
return classifier;
}
public void setClassifier( final String classifier )
{
this.classifier = classifier;
}
public String getFileName()
{
return fileName;
}
public void setFileName( final String fileName )
{
this.fileName = fileName;
}
public String getType()
{
return type;
}
public void setType( final String type )
{
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy