aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Android_Studio/OpenCV_Includes/sdk/java/lint.xml
blob: 56ce28e8790a5489245a1787ab043dc339614b02 (plain)
1
2
3
4
5
6
7
8
9
<?xml version="1.0" encoding="UTF-8"?>
<lint>
    <issue id="InlinedApi">
        <ignore path="src\org\opencv\android\JavaCameraView.java" />
    </issue>
    <issue id="NewApi">
        <ignore path="src\org\opencv\android\JavaCameraView.java" />
    </issue>
</lint>
lass="w"> System.Text; using System.Threading.Tasks; using System.Windows.Data; namespace Tango.SharedUI.Converters { public class StringEllipsisConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { try { if (value != null) { return value.ToString().Ellipsis(System.Convert.ToInt32(parameter)); } else { return value; } } catch { return value; } } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }